options (buttons or texts) link to a page upon pointing to a butto

  • Thread starter Thread starter clever_rey
  • Start date Start date
C

clever_rey

How can i make options (buttons or texts) link to a page when i point (or a
cursor happen to point) to a button?
 
Your question is not clear - what do you mean by "options"?

To answer my interpretation of the question, in code view modify the button
image as:

<a href="newpage.htm" onmouseover="document.location='newpage.htm';return
false;"><img src="button,jpg" width="100" height="33" alt="link to
newpage.htm"></a>

where newpage.htm is the page the button links to.

But do you really want to point at a link and change the page? This will
annoy almost everybody since accidental pointing, or even just moving the
mouse accross one button to reach a different button, will cause the page
to change.
--
Ron Symonds
Microsoft MVP (Expression)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.
 
Back
Top