Posted by julian_m on 05/18/06 20:09
After double-clicking the link the browser wants to reload the page,
even though there is not any link at all.
It doesn't happen if I change the "ondblclick" event to "onclick"
<a href="" ondblclick="show_div('the_div_3'); return false;">Div 3</a>
<div style="display: none;" id="the_div_1">This is div 1</div>
The javascript function is really a basic one...
<script type="text/javascript">
function show_div(div_id) {
document.getElementById(div_id).style.display = 'block';
}
</script>
Any hint?
regards- julian
[Back to original message]
|