This is a simple tutorial on how to get a dropdown list value using simple ajax and php Create a html page named country.html and add the below codes, HTML CODE <select name="country" onChange="getCurrencyCode('find_ccode.php?country='+this.value)"> <option value="">Select Country</option> ... (Continue reading)
This tutorial shows how to track your vistors click using simple php and Ajax To implement the click tracking tool we need to create 2 files: Demo.html: This file contains the html with the links and the Ajax code. clickTracker.php: This files will... (Continue reading)
Automatic Ajax Loading Images With Prototype One of the benefits of using Ajax is that you don’t have to refresh the browser to update portions of a page. However the downside of this is if you have network lag for some... (Continue reading)
The AJAX HTML Page This is the HTML page. It contains a simple HTML form and a link to a JavaScript. First Name: <input type=”text” id=”txt1″ onkeyup=”showHint(this.value)”> Suggestions: The JavaScript code is listed below. The AJAX JavaScript This is the JavaScript code, stored in the file “clienthint.js”: var... (Continue reading)