Overriding default window.status/defaultStatus behaviour by hyperlinks

  • Thread starter Thread starter Jason
  • Start date Start date
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
 
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;"
 
Back
Top