This Multi Stage HTML5 Form Using jQuery and CSS3 PART 2 continuation of previous tutorial, before continuing this have a look at my previous tutorial on Multi Stage HTML5 Form Using jQuery and CSS3. In this tutorial we are going to….. Read More >>>>
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 >>>>
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 >>>>
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 >>>>
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 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 >>>>