Forum: JavaScript / DHTML / AJAX 3 Days Ago |
| Replies: 10 Views: 417 The call to execute the JS function never occurs. You have coded the html form sentence with: onsubmit="return validate(this);"
which tell the JS parser to return and the execute the function ... |
Forum: JavaScript / DHTML / AJAX Apr 21st, 2008 |
| Replies: 24 Views: 8,125 If you have the image on a server (whichever), just place the url on the "a" tag...
<a href="spike.jpg" onclick="this.href = 'javascript:void(0);';">
<img... |
Forum: JavaScript / DHTML / AJAX Apr 13th, 2008 |
| Replies: 11 Views: 8,221 What you need is not JavaScript.
Use Java instead. |
Forum: JavaScript / DHTML / AJAX Apr 6th, 2008 |
| Replies: 9 Views: 5,957 At a first glance, I can see that on your calling code:
<div class="icons"> <a href="#" onmouseover="SwapOut(personal, 0)" onmouseout="SwapBack(personal, 1)"><img name="personal" alt="logo"... |