How can i disable titles showing when "mouse over" images ?
Thanx!
How can i disable titles showing when "mouse over" images ?
Thanx!
Hi ,
Try to add this code on your footer.php and a bit above the </body> code:
<script type="text/javascript">
jQuery.noConflict();
(function($) {
$('[title]').each( function() {
var $this = $(this);
$this.data('title',$this.attr('title'));
$this.removeAttr('title');
});
})(jQuery);
</script>
Hope this helps. :)
Regards,
Ismael
Thanx!
Worked fine!
Glad Ismael could help! Let us know if you have any more questions.
Regards,
Mya
This topic has been closed to new replies.