Home Answers Viewqa Ajax Find currenly which field is having focus on html page?

 
 


Navnath
Find currenly which field is having focus on html page?
1 Answer(s)      3 years and 11 months ago
Posted in : Ajax

View Answers

July 6, 2009 at 5:03 PM


Hi Friend,

Try the following code:

<html>
<head>
<script>
function whichBlur(f){
alert(f)}
</script>
</head>
<body>
<form name=Form1 method="post">
<input name="Form1" type="submit" value="Form1" onfocus="whichBlur(this.name)">
</form>
<form name=Form2 method="post">
<input name="Form2" type="submit" value="From2" onfocus="whichBlur(this.name)">
</form>
</body>
</html>

Thanks









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.