icon
Leave a message

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Friday, 25 January 2013

Using Onmouseover and Onmouseout in Java Script

Frist we take one image vivekanand.jpg in smae folder // using with onmouseover and onmouseout in java script <html> <head> <script language="javascript">     function f1()      {         document.image1.height = 500;         document.image1.width = 500;     }     function f2()   ...

Tuesday, 22 January 2013

Create Form with table in html ( Text Field,Radio Button,Drop Down,Check Box )

Create Form with table in html ( using Text Field,Radio Button,Drop Down,Check Box,Submit Button) <html> </head> //  for  java script  code </head> <title>Regitration Page in HTML</title> <body> <form method="post" action="nextpage.html"  name="myform"> <table border="10px" width="100%"> <tr><td colspan="3"> <marquee behavior="alternate" ><b>...

Sunday, 20 January 2013

Validation for Password and Confirm Password in java script

///Validation for Password and Confirm Password in java script <html> <head> <title>Validation for Password and Confirm Password </title> <script>     function fun() {         var a = document.f1.elements.pass1.value;         var b = document.f1.elements.pass2.value;         if (a != b)...