Get rid of those UGLY Joomla tool tips! Not only are they ugly, but they're usually 100% useless. They're written by someone that has very poor English language skills and also very poor user experience skills. But Joomla goes out of their way to make it very difficult to remove them. The jQuery below will remove them because it removes the attributes that fire the javascript which throws them up. It also gets rid of the title attribute. Do you really want 'title' to pop up when you roll over the word title? It not only looks stupid... it is stupid.
<script type="text/javascript"> var jQ=jQuery.noConflict(); jQ("label").removeAttr("data-content"); jQ("label").removeAttr("title"); </script>
Comments