When user comes to your site and filling form, they need scroll down the site for each every information they are going to fill. This seems to be unfriendly user interaction and greatly reduces the user interest. This Multi-Stage HTML 5 form avoids unnecessary scroll….. Read More >>>>
Posts By: muni
jQuery Script to Disable Right Click And Control Save on your Site
This following jQuery script help you to prevent your html page from saving as well prevent the access of html source code. jQuery script to disable right click option of browser on your html page or site. $(document).bind(‘contextmenu’,function(e){ e.preventDefault();….. Read More >>>>
PHP Script to Send Email with Attachment
I had searched in Google for long time for the script to send an email with file attachment (all types of file pdf files,word files and images etc……). It was hard thing to find out exact script. Here I had….. Read More >>>>
Live Preview In jQuery
jQuery live preview script helps the user to preview their entered information in the site or in the comment box before finally submiting their information to the site. Here is sample jQuery script : <script> $(“document”).ready(function(){ $(“#live1”).keyup(function(){ $(“#live_pre1”).html($(this).val()); }); </script> ….. Read More >>>>
Google URL Shortener API Service PHP Script
Google URL Shortener API is one of the Google service, which takes long url (http://smarttutorials.net/demo/google_url_shortener.php) and squeezes it into short as URL with few characters (http://goo.gl/EGA5Y) to use in tweets and etc… Google URL Shortener API Demo http://smarttutorials.net/demo/google_url_shortener.php….. Read More >>>>
How to get Google API key and Google oAuth 2.0 client ID
Google API key is too important to use all the google services like Google maps, Google URL shortener, Google calender and etc.. in your application. Google uses this API key for authentication purpose when we making request to the Google….. Read More >>>>