Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I found this cool jquery mobile rendition that's based on the concept of the new facebook menu for mobiles. It works like a charm - BUT the jquery core is outdated , so when i try to link to the most recent Jquery library the page totally bugs out.

Any help on how to make the script compatible to recent library?

As you can see it uses 1.6.4 Library and most recent is 1.7.2

HTML

<!DOCTYPE html> 
<html> 
<head> 
<title>FB Style Menu</title> 
<meta id="extViewportMeta" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black" />   
<link rel="stylesheet" href="jquery.mobile-1.0rc2.min.css" />
<link rel="stylesheet" href="main.css" />
<script type="text/javascript" src="jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="jquery.mobile-1.0rc2.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</head> 

<body> 
<div id="menu">
<h3>Menu</h3>
<ul>
    <li class="active"><a href="#home" class="contentLink">Home </a></li>
    <li><a href="#home" class="contentLink">About </a></li>
    <li><a href="#home" class="contentLink">Portfolio </a></li>
    <li><a href="#home" class="contentLink">Contact </a></li>
</ul>
</div>
<div data-role="page" class="pages" id="home">
<div data-role="header">
<a href="#"class="showMenu">Menu</a>
    <h1>FB Style Menu</h1>
</div><!-- /header -->
<div data-role="content">
    <p><strong>Note: You can swipe right/left to show/close menu.</strong></p>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>

jQuery

$(function(){
var menuStatus;

$("a.showMenu").click(function(){
    if(menuStatus != true){
    $(".ui-page-active").animate({
        marginLeft: "165px",
      }, 300, function(){menuStatus = true});
      return false;
      } else {
        $(".ui-page-active").animate({
        marginLeft: "0px",
      }, 300, function(){menuStatus = false});
        return false;
      }
});

$('.pages').live("swipeleft", function(){
    if (menuStatus){
    $(".ui-page-active").animate({
        marginLeft: "0px",
      }, 300, function(){menuStatus = false});
      }
});

$('.pages').live("swiperight", function(){
    if (!menuStatus){
    $(".ui-page-active").animate({
        marginLeft: "165px",
      }, 300, function(){menuStatus = true});
      }
});

$("#menu li a").click(function(){
    var p = $(this).parent();
    if($(p).hasClass('active')){
        $("#menu li").removeClass('active');
    } else {
        $("#menu li").removeClass('active');
        $(p).addClass('active');
    }
});

});
share|improve this question
1  
So you are just asking for someone to update your code? have you tried opening the console? to see what error you are getting? – ifaour Jun 4 '12 at 14:18
It looks like the OP's asking for tips/advice, rather than straight-up code updates. It may even be that "Open the console to see what error you're getting" is a viable tip. People do function at radically different levels of coding skill here. That having been said, the question is a bit unclear. – Ben Barden Jun 4 '12 at 14:49

closed as too localized by casperOne Jun 5 '12 at 15:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Tips for updating:

  • Go through all of the changelogs for JQuery 1.6.4 -> 1.7.2 and look for things that may have been broken. JQuery changelogs are generally pretty good at pointing out "here is a thing that we did that might break your code". look through the code you have to see if you can pick any of those out easily.

  • as ifaour suggested, open the console to see what error you're getting. Having the list of chagelog breaks before you do this may prove useful.

  • Alternately, consider just continuing to use the old JQuery library. There's nothing magical about the latest version that makes it an absolute must-have, unless you need to use some new functionality from it on the same page you use this script.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.