[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