Jump to content
Fórum Script Brasil
  • 0

Desabilitando Title Padrão


SrRafael

Question

Olá,

Estou com um problema, estou utilizando o Tooltip, porém, quando passa o mouse o title padrão não some, aparecendo os dois.
Segue abaixo um print para entenderem o problema e o código que estou usando.

vcyt7s.png

Código:

Script

<script type="text/javascript">
$(function() {
	//adiciona o estilo de em todos os elementos com o rel tooltip
	$("*[rel=tooltip]").hover(function(e){
		//cria o elemento
		$("body").append('<div class="tooltip">'+$(this).attr('title')+'</div>');
		$('.tooltip').css({
			top : e.pageY - 50,
			left : e.pageX + 20
			}).fadeIn();
	  
	}, function(){
		//Ao remover o mouse remove o estilo
		$('.tooltip').remove();
		//ao arrastar o mouse posiciona o elemento
	}).mousemove(function(e){
		$('.tooltip').css({
			top : e.pageY - 50,
			left : e.pageX + 20
		})
	})
});
</script>
	<a title="Adicionar ao Carrinho" rel="tooltip"> <img src="catalog/view/theme/wlinfo/image/add-button.png" /></a>

Alguém sabe como desabilita o title padrão?

Abraços

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...