A Few HTML Questions

  1. How do I make it so when the mouse hovers over a link or button. It doesn’t show the URL in the bottom left? Can I also make it say something?

  2. I’ve also seen sites where it has text effects on the bottom left bar where is displays links… How can I do this?

  3. When posting a picture, How do I make it so when someone trys to right click it… A Box will pop up saying “No Right Clicks”

Please… Help Me. Thanks!!

All you need is javascript for that, here’s one example:
http://www.javascriptkit.com/script/cut11.shtml
search the site (or others) for the rest.

Didn’t Help

Too bad.

u need a status bar javascript or dhtml script might also be a applet i aint sure u should be able to find 1 on either

http://www.javafile.com or
http://www.a1javascripts.com

should work if not email me and ill sort u 1 out
[email protected]

-Tom

  1. Make your link look like this…
<A HREF="yourpage" onMouseOver="javascript:window.status='';return true;">My Link</A>
  1. I usually used to use www.dynamicdrive.com for my scripts. I don’t use them anymore because I learned how to do javascript myself. I do still check out DD just to see what other people are doing.

  2. A no right click script is also available on DD, they even have one where no alert pops up, instead you just can’t right click in the window period. This doesn’t prevent anyone from stealing your content though. They can easily use CTRL+C to copy or go to View/Source and get it from there. But if you want to use it you can get it there.

I hope this answers all of your questions.