Thank you Karl,

is working fine.

A question. here is the code I was trying to use.
What was wrong in that??

                $('#icons_banner a').hover(function(){
                        $this = $(this);
                        var tip = $(this).attr('title');
                        $this.attr({title:''});
                        $('img',$this).attr({alt:''});
                        $('#toolbanner_map p').html(tip);
                },function(){
                        $this.attr({title:tip});
                        $('img',$this).attr({alt:tip});
                });


Thanks

Andrea



On Nov 15, 11:10 am, tlphipps <[EMAIL PROTECTED]> wrote:
> You can have jquery set the title and alt attributes to blank strings
> in the document.ready
> Example:
> $("#someid_or_other_selector").attr("title", "").attr("alt","");
>
> On Nov 15, 10:41 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
> wrote:
>
> > Hi,
>
> > I need to prevent the browsers ( All ) to show the title link and the
> > alt message of img as tootltip.
> > The prevention must be made only on a particular link that wrap an
> > image.
>
> > Any suggestion?
>
> > Thanks
>
> > Andrea

Reply via email to