Categories
How To Article Javascript

How To Display Current Time on Page using Javascript

How To Display Current Time on Page using Javascript In this tutorial we will learn How To Display Current Time on Page using Javascript. We are using JavaScript to accomplish this. Code: <html> <head> <title>How To Display Current Time on Page using Javascript</title> <style type="text/css"> body { width: 980px; margin: 0px auto; text-align: center; padding-top: 50px; […]

Categories
Javascript Website Design

How To Disable Right Click Using jQuery

How To Disable Right Click Using jQuery In this post we will learn How To Disable Right Click Using jQuery.Online their are many codes available to disable right click using JavaScript but jQuery makes very easy to disable right click.For this you just have add the below given code into head section of your page. Code: […]

Categories
Javascript Website Design

HTML5 AJAX Responsive Contact Form With Google Maps

HTML5 AJAX Responsive Contact Form With Google Maps In this post we will discuss how to create a HTML5 AJAX Responsive Contact Form With Google Maps.I am using PHP as back end technology but you can use what ever you want. We are doing form validation in both HTML5 as well as jQuery(JavaScript) level but if you want you […]

Categories
Javascript

Allow Only Alphabets In Textbox Using JavaScript

Allow Only Alphabets In Textbox Using JavaScript In this post we will discuss how to Allow Only Alphabets In Textbox Using JavaScript.I have already discussed Allow Only Numbers In Textbox Using JavaScript.I am using jQuery for this to achieve. Code: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Allow Only Alphabets In Textbox Using JavaScript</title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script> <script type="text/javascript"> $(function () […]