onClick Q
onClick Q
- Started
- Last post
- 3 Responses
- Fher
Can i put more than 1 time the tag onClick="" ?
Or any one a clue on how to, when a link is clicked, many frames do change?
Best Regards...
- londonBoy0
one onClick command then use functions to activate everything else or read up on location.href
- Nematoth0
no.. can only use once..
Just put a call to a function that changes the contents of two ifrmaes..onClick="javascript:doThisDouble WindaeShite();"
your js function:
function doThisDouble WindaeShite()
{
iframe1.document.location + "whaeva.htm";iframe2.document.location + "awrightMate.htm";
}sometihng like that....
- Nematoth0
em.. some weird shit goin' on there..
Should read..
function doThisDouble WindaeShite()
{
iframe1.document.location.href = "whaeva.htm";iframe2.document.location.href = "awrightMate.htm";
}