| Forums | Email a Colleague | FAQ |
|
Dr. Website® Archives 2002July 18, 2002
Dear Dr. Website: I would like to create text links in html that do not display with the standard underline. Is there a way to display html links without an underline short of creating a graphic for each link. Answer:
<STYLE TYPE="text/css">
Note that you can also change the color of the text links as well by adding:
color : #000000;
to each style (#000000 equals black, while #ffffff would be white, etc.).
--Dr.Website Question: I want to be able to run a script( click the submit )as soon as the page downloads. I do not want the user to click the submit button. I want to script to run as soon as the page is completely downloaded. Is this possible and how? Answer:
<HTML>
</BODY>
Note that you can use any form; just make sure that you name the form
appropriately (in the example above it is named "moveme."
--Dr.Website
Question: For example, here is the command I give currently: <FORM METHOD="POST" ACTION="mailto:jlcst81@pitt.edu" enctype="text/plain"> blah, blah, blah <INPUT TYPE="submit" VALUE="Submit"><INPUT TYPE="reset" VALUE="Reset Form"></FORM> This allows me to have users submit the form to me but they may end up pressing submit multiple times thinking it hasn't sent. I want the button to also direct them to a confirmation page. I know the command is: <form method=get action="http://the confirmation web site.html"> but I don't know how to incorporate it. Answer:
<SCRIPT LANGUAGE="JavaScript"> --Dr.Website ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|