The HTML Head <!– JQUERY UI –> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> <!–Should be first script imported/first script on the page–> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/smoothness/jquery-ui.css" type="text/css" media="all" /> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js" type="text/javascript"></script> <script type="text/javascript"> //—————————————- //—– OUR JQUERY ENTER TEXT DIALOG —– //—————————————- $(".our_jquery_dialog").live('click', function(e) { e.preventDefault(); //—– OPTIONAL GET SPECIAL VALUES INCLUDED IN THE LINK —– var usage_id […]
Category: Examples
Yes No Dialog that then calls PHP Function
The HTML Head <!– JQUERY UI –> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> <!–Should be first script imported/first script on the page–> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/smoothness/jquery-ui.css" type="text/css" media="all" /> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js" type="text/javascript"></script> <script type="text/javascript"> //—————————– //—– OUR JQUERY DIALOG —– //—————————– $(".our_jquery_dialog").live('click', function(e) { e.preventDefault(); //—– OPTIONAL GET SPECIAL VALUES INCLUDED IN THE LINK —– var usage_id = $(this).attr("usage_id"); […]