|
Posted by julian_m on 05/19/06 05:21
Neredbojias wrote:
> To further the education of mankind, "julian_m" <julianmaisano@gmail.com>
> vouchsafed:
>
> > 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>
>
> It's 'cause you have an empty href.
>
> Do:
>
> <a href="javascript:void(0)" ondblclick="show_div('the_div_3'); return
> false;">
>
Great, thanks.
It's strange what happens with (click != dblclick) though
regards - julian
Navigation:
[Reply to this message]
|