I use append function of jquery for add text and show div but when i use show me the text each time i go over the link trigger the effect
<script>
$(document).ready(function() {
$(".wm_1").mouseover(function() {
$("#web_tooltip").show(2000).append("Hello how are you?");
});
$("#web_tooltip").mouseover(function() {
$("#web_tooltip").hide(2000).fadeIn('slow');
});
});
</script>
When i go over the link trigger the effect show me the firt time “hello how are you …. if i go more times over the link show me 2 , 3 , 4 the text , and all time add the text to the div …..
Regards !!!
upd: try this if you need add info, but not replace (or some thing like that)