Hi every one..
My questions is easy.. In a browser when you pint on a link in the page the url of that link appears in the browser status bar..is there any way to prevent the browser from showing this url?
Thanx...
You would have to try some javascript to do something like that, as PHP can only do things server-side.... The link in the status bar is done client-side.
Not really php but here is what that Javascript would look like
<a href="somehtml.html" onMouseover="window.status = ' ' ">blah</a>
You could put whatever you wanted between ' ' but since you want to leave it blank just do that. 🙂