Tutorial #53 del curso de Jquery, en este tutorial veremos como acceder a los metodos y eventos de jquery mobile utilizando código jquery esto nos permite crear nuestros propios scripts.
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>JQuery - Eventos</title> <link href="jquery-mobile/jquery.mobile-1.4.5.min.css" rel="stylesheet"> </head> <body> <div data-role="page"> <div data-role="header"> <h2>jquery mobile</h2> </div> <div data-role="content"> </div> <div data-role="footer" class="ui-bar"> <h2>Cursos de Jquery 2015</h2> </div> <script src="js/jquery-2.1.3.min.js"></script> <script type="text/javascript"> $(document).bind('mobileinit',function(){ $.mobile.ajaxEnabled = "false"; $('pagina').bind('tab',function(){ }); $('pagina').bind('tabhold',function(){ }); $('pagina').bind('swipeleft',function(){ }); $(document).bind('orientationchange',function(){ }); $(document).bind('scrollstart',function(){ }); $(document).bind('scrollstop',function(){ }); }); </script> <script src="jquery-mobile/jquery.mobile-1.4.5.min.js"></script> </body> </html>