Results 1 to 3 of 3

Thread: Run JS On Mobile Only - not working

  1. #1
    Join Date
    Oct 2010
    Posts
    75
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Default Run JS On Mobile Only - not working

    Any idea? Im not too good with code. Code works fine when I just put the code in jquery.js (yeah i know its javascript), right before </body>. Thank you.
    Code:
    <head>
    <link rel='stylesheet' media='screen and (max-device-width: 640px)' href='jquery.js'>
    </head>
    jquery.js

    Code:
      function myFunction() {
       var container = document.getElementById('container'), 
        divs = container.getElementsByTagName('div'),
        tmpdiv = document.createElement('div'),
        order = [3, 2, 1];
    
    for (var i = 0; i < order.length; i++) {
        tmpdiv.appendChild(document.getElementById('div' + [order[i]]));
    }
    
    container.parentNode.replaceChild(tmpdiv, container);
    
    }
            window.onload = myFunction();

  2. #2
    Join Date
    Jul 2008
    Location
    Derbyshire, UK
    Posts
    3,033
    Thanks
    25
    Thanked 599 Times in 575 Posts
    Blog Entries
    40

    Default

    Focus on Function Web Design
    Fast Edit (A flat file, PHP web page editor & CMS. Small, FREE, no database!) | Fast Edit BE (Snippet Manager) (Web content editor for multiple editable regions!) | Fast Apps

  3. The Following User Says Thank You to Beverleyh For This Useful Post:

    mat420 (10-08-2015)

  4. #3
    Join Date
    Oct 2010
    Posts
    75
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Default

    thanks bev!

Similar Threads

  1. { Help ] Mobile Friendly Version not working .
    By Akhiltheblogger in forum PHP
    Replies: 2
    Last Post: 05-30-2015, 07:41 PM
  2. Magnify JS V1.11 not working on Mobile Site
    By bunny255 in forum Dynamic Drive scripts help
    Replies: 5
    Last Post: 12-04-2014, 08:37 PM
  3. Replies: 5
    Last Post: 06-28-2014, 09:18 PM
  4. Replies: 0
    Last Post: 03-02-2014, 12:59 PM
  5. mobile cms
    By davidjmorin in forum Looking for such a script or service
    Replies: 3
    Last Post: 12-21-2007, 01:22 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •