Haz 8 2016
Jquery Dependent DropDown List
jQuery Dependent DropDown List – Countries and States <div class=”frmDronpDown”> <div class=”row”> <label>Country:</label><br/> <select name=”country” id=”country-list” class=”demoInputBox” onChange=”getState(this.value);”> <option value=””>Select Country</option> <?php foreach($results as $country) { ?> <option value=”<?php echo $country[“id”]; ?>”><?php echo $country[“name”]; ?></option> <?php } ?> </select> </div> <div class=”row”> <label>State:</label><br/> <select name=”state” id=”state-list” class=”demoInputBox”> <option value=””>Select State</option> </select> </div> </div> jQuery Dependent […]
Haz 14 2016
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ı
By Burhan KARADERE • 2015 - 2016 • 2 • Tags: function, javascript, jquery, Mobile, MOBILE JQUERY, open dialog popup