Archive for the ‘JavaScript’ Category

How to include google map locations with multiple waypoints in our website

In this example am adding google map source, destination and way points manually. This also can be performed in the dynamic way also.

       

Read more »

HTML5 download Attribute

 
The download attribute allows you to set a separate file download name than the actual link endpoint itself.
 
 
Place the download attribute on a link in html file.
 
Example
 
<!– will download as "jijokjose.zip" –>
 
<a href="http://www.jijokjose.com/wp-content/uploads/2013/01/ajax_auto_complete.zip" download="jijokjose.zip">Download Sample File</a>
 
Result
 
 
..and when the user clicks the link, the download attribute appears in the save dialog instead of the garbled mess that was there before.
 

Read more »

Auto Complete Text box using AJAX in PHP

 

To download code – Click Here

 
To view the live demo please enter your country name.
 
 

Read more »