resimlerde ve linklerde kullandığımız title tagı fare üstüne geldiği zaman görünüyor ya, işte onu nasıl görünmez yapabilirim?
Dünden beri araştırıyorum fakat sonuç alamdım, bilen varsa paylaşmasını rica ediyorum
Örnek:
8
●2.208
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
$(document).ready(function (){
$("a").each(function(e) {
var title = $(this).attr('title');
$(this).mouseover(
function() {
$(this).attr('title','');
}).mouseout(
function() {
$(this).attr('title', title);
});
});
});
</script>
</head>
<body>
<a href="http://www.taslar.net" title="Doğal Taşlar">Doğal Taşlar</a>
</body>
</html> <html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function (){
$("a").each(function(e) {
var title = $(this).attr('title');
$(this).mouseover( function() { $(this).attr('title',''); }).mouseout( function() { $(this).attr('title', title); });});
});
</script>
</head>
<body>
<a href="#" title="Deneme">deneme link</a>
</body>
</html>