FB-Style-Page-Slide-Menu
FB-Style-Page-Slide-Menu copied to clipboard
FB mobile inspired slide out menu built on jQuery mobile
I have an issue when the menu (which is dynamically built using ajax) is longer than the page content. The menu wraps around the bottom of the page. This looks...
``` // Show menu $("a.showMenu").click(function() { if (menuStatus != true) { $(".ui-page-active").css({ '-webkit-transition': 'all .1s ease-in', '-moz-transition': 'all .1s ease-in', 'margin-left': '280px' }); menuStatus = true; return false; } else...
When a page is populated with a lot of content (enough to at least make it scroll), it will flicker when you navigate to it (by flicker, I mean it...
I really love this snippet. The code is neat, but for some reason it collides with the new jQM. I can't find why, the code doesn't seem to be tricky...