jquery mobile open dialog popup javascript function

<html> <head> <meta charset=”utf-8″ /> <meta name=”viewport” content=”width=device-width, initial-scale=1″ /> <title> </title> <link rel=”stylesheet” href=”http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css” /> <style> /* App custom styles */ </style> <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js”> </script> <script src=”http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js”> </script> <script type=”text/javascript”> function doStuff() { //alert(1) // var updatedText = getUpdatedText(); // $(“#myMessage”, “#myDialog”).html(updatedText); $.mobile.changePage(“#myDialog”); } </script> </head> <body> <div id=”myPage” data-role=”page”> <div data-role=”header”> <a href=”#” […]

Devamı