javascript - how to hide url address in status bar? -


possible duplicate:
javascript: change browser window status message

when hover on link text, target link shown in status bar. how can hide link address in status bar. example, in following link:

<a href="javascript:$('#fileupload2').fileuploadstart()">start upload</a>  

try this

<a onclick="javascript:$('#fileupload2').fileuploadstart()" href="javascript:void(0)">start upload</a>` 

only javascript:void(0) show in browser window.

james


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -