11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
<!-- start Simple Custom CSS and JS -->
|
|
<script type="text/javascript">
|
|
|
|
|
|
jQuery(document).ready(function($) {
|
|
$('img[title]').each(function() {
|
|
$(this).removeAttr('title');
|
|
});
|
|
});</script>
|
|
<!-- end Simple Custom CSS and JS -->
|