Hi,
I don't want to give the contact link an id.
Instead like to use the id from the div and then traverse to the element and setAttribute either onmouseover or onload.
Hi,
I am trying to update the contact in this code using an external js file and targeting the "Contact me" node using the DOM: (see my js attempt below.):
I put thraddash's script to work, but then I realized that I failed to mention that there will be other numeric columns that should not be colored, rather they...
Hi,
I've been trying to figure this out for hours.
I want to write a js so that if the number in the 2nd column is negative, then the javascript changes the css color to red, so that the number is...
Thanks Gozzy82, that worked great. I created a button to shuffle the flags instead so people wouldn't see the shuffle after load--But,
How do you suggest doing this on the server side so the page...
Hi everyone,
onload of this page: http://www.heybrian.com/travels/
I would like the flags (each in it's own <div> tag) to randomly arrange.
Now, they are in alphabetical order.
How can I do this...
Yes, nathandelane is correct. I need check boxes.
Also, nathandelane, this is a great start.
I also need this second part:
If any one (or several/all) of the other check boxes is checked, then...
See code below:
If "None" is selected, I need all the other check boxes grayed out.
If any one (or several/all) of the other check boxes is checked, then "None" grays out. How can I make this work?...
Yeah, that's a good point. One last question:
I am going to use this script (the first one):
<a href="url_link" onclick="if(navigator.appName!='Microsoft Internet Explorer'){ alert('Please use the...
Yeah, I agree, but the reason is links to directories only work on IE, such as file:\\folder_name. (On IE, this will open a folder.)
For security reasons, these links don't work on Firefox, etc. So...
I like this Conditional comments code:
<!--[if !IE]>
<a href="#" onclick="alert('please use IE');">link</a>
<![endif]-->
<!--[if IE]>
<a href="nextpage.html">link</a>
<![endif]-->
Thanks again, neat how the transitional XHTML requires the case-sensitivity. I should have know that because most of my pages are now XHTML transitional compliant.
Sick, that works. Doctype is XHTML 1.0 Transitional, btw.
Is there anyway to use shorthand, putting some code in the <head> tag and then having smaller <a> tag code?
<a href="file:\\Mojito\subarchive" onClick="if(Navigator.appName=='Netscape'){ alert('Please use the Internet Explorer browser for this link.')}";>link</a>
...