Overriding default window.status/defaultStatus behaviour by hyperlinks

J

Jason

Hi

when you hover over a LinkButton, the window status text changes. e.g.
javascript:__doPostBack('lnkNextBottom','')
how do i change it so that it does not display this text?
i have tried
onmouseover="window.status='text';"
and
onmouseover="window.defaultStatus='text';"
but both do not work. it still shows the e.g. text above.

Thanks
Jason
 
J

Jason

I found the solution, if anyone was interested. hopefully it works without
any "side effects"
instead of just
onmouseover="window.status='text';"
put
onmouseover="window.status='text';return true;"
 

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