What is the use of blur() Method in Javascript?

 Posted by Vishalneeraj-24503 on 5/16/2015 | Category: JavaScript Interview questions | Views: 2287 | Points: 40
Answer:

The blur() method is used to remove focus from a button.
Syntax:-
blur()


For Example:-
function LostFocus() 

{
document.form1.btn_save.blur();
}


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response