помогите исправить.. как сделать так что бы подсказка всплывала для любого элемента у которого установлен title Код (Text): this.vtip = function() { this.xOffset = 10; // x distance from mouse this.yOffset = 25; // y distance from mouse $(".vtip, .bottom").unbind().hover( function(e) { this.t = this.title; this.title = ''; this.top = (e.pageY + yOffset); this.left = (e.pageX + xOffset); $('body').append( '<p id="vtip">' + this.t + '</p>' ); $('p#vtip').css("top", this.top+"px").css("left", this.left+"px").fadeIn("300"); }, function() { this.title = this.t; $("p#vtip").fadeOut("300").remove(); } ).mousemove( function(e) { this.top = (e.pageY + yOffset); this.left = (e.pageX + xOffset); $("p#vtip").css("top", this.top+"px").css("left", this.left+"px"); } ); }; jQuery(document).ready(function($){vtip();})