Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery Mobile: Ensure clicks aren't recorded in history
- $(document).bind("pagecreate", function() {
- $("ul#tabs-menu li a").click(function () {
- alert('The code fired!');
- var url = $(this).attr('data-url');
- $.mobile.changePage(url, {
- transition: "none",
- reverse: false,
- changeHash: false
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement