I am working on a website which is available at:
http://www.rate-me-now.com
The "top 10 Most beautiful Women" box is represented by a div ("box1"). Since I wanted that all this page-area would act as a link that clicking on it will cause a submitting of a form and moving to another page, I added to that div the attribute:
<div class="box1" onclick="javascript:document.forms['womenForm'].submit();" ...>
everything in this area shuold link to the next page aprat from an HTML select that is inside this box and should be clicked without moving to the next page.
How can I cause it to heppend? I tried to wrap the select element with a div, giving it href="" or onclick="" but still pressing on this select also cause the form to be submitted.
Anyone got an idea?