mình có đọc qua jquery http://forum.jquery.com/topic/hiding-title-and-alt-tooltips
đoạn js này có chức năng ẩn alt và title
khi mình cho vào html thì hoạt động tốt
http://forumtes.forumvi.com/h1-page
alt và title bị ẩn
nhưng khi mình cho vào forum thì lại ko có tác dụng ::
http://forumtes.forumvi.com
vấn đề jquery này mình rất kém mong mọi người cho ý kiến giúp đỡ mình
đoạn js này có chức năng ẩn alt và title
- Code:
$.fn.hideTips = function(){
// when building a plugin, "this" references the jquery object that the plugin was called on.
// iterate through each element and return the elements.
return this.each(function(){
// save element for referencing later
var $elem = $(this)
// save alt and title
var savealt = $elem.attr('alt');
var savetitle = $elem.attr('title');
// on mouseover, remove attributes
// on mouseout, set attributes
$elem.hover(function(){
$elem.removeAttr('title').removeAttr('alt');
},function(){
$elem.attr({title:savetitle,alt:savealt});
});
});
};
khi mình cho vào html thì hoạt động tốt
http://forumtes.forumvi.com/h1-page
alt và title bị ẩn
nhưng khi mình cho vào forum thì lại ko có tác dụng ::
http://forumtes.forumvi.com
vấn đề jquery này mình rất kém mong mọi người cho ý kiến giúp đỡ mình