How to use the blur() method?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
How to use the blur() method?
Rating:
The syntax of using the blur() method is as follows:
The blur() method can be used as follows:
<head>
<script language="JavaScript">
function blurme()
{
window.blur()
}
</script>
</head>
<body>
<form>
<input type="button" value="Blur" onclick="blurme()">
</form>
</body>
</html>
Rating:
Was this information helpful?
Other articles
- What is the defaultChecked property?
- How to use arguments?
- What is the do-while loop?
- What is the document object?
- How to create an external script file?