[Solved] How do I hide the tooltip ‘title’ when using a lightbox plugin

If you want to stick with this plugin, your have to change its code a little. Modifying jquery.lightbox-0.5.js, change // in line 77: objClicked.getAttribute(‘title’) // replace by: objClicked.getAttribute(‘data-lightboxtitle’) and // in line 81: jQueryMatchedObj[i].getAttribute(‘title’) // replace by: jQueryMatchedObj[i].getAttribute(‘data-lightboxtitle’) Then in your HTML, just replace the title attributes in your a with the data-lightboxtitle, like so … Read more

[Solved] moving the caption of a tooltip

Here is an updated FIDDLE. The relevant line is this one: .css(‘top’, -h.toString() + ‘px’); It positions the div for the text, and to change the position above the image, I just placed a negative sign in front of h.toString(). You could finely adjust the position by multiplying the h.toString() by a coefficient like -.8 … Read more