Posts

Showing posts with the label use of focus function in JavaScript

how to use focus function javascript

 focu()  function  is use in javascript for focus of input box when you enter any wrong values in inputbox for example email , mobile number .. etc example : Email Id : when you enter wrong email them your cursor blink on input box  code : in javascript  document.getElementById('email').focus(); in jquery     $('#email').focus() ;    where email s id of input box