HTML onmouseover, onfocus

K

KAT

making a webpage 508 compliant, using watchfire "bobby" program its telling
me for an event handler error onmouseover I need onfocus. the question is
where does onfocus go I've put in front of the error wont go away, I've tried
behind it the error wont go away
 
J

Jens Peter Karlsen[FP MVP]

Same place as you put the onmouseover.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
M

Murray

It goes in your anchor tag, e.g.,

<a href="foo.html" onmouseover="..." onfocus="...">

In addition, you should add the focus pseudo-class to your CSS rules, e.g.,

a:link { ... }
a:visited { ... }
a:hover { ... }
a:focus { ... }
a:active { ... }
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top