Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- jQuery(document).ready(function($) {
- $("img").mouseenter(function() {
- let $pac_da_title = $(this).attr("title");
- $(this).attr("pac_da_title", $pac_da_title);
- $(this).attr("title", "");
- }).mouseleave(function() {
- let $pac_da_title = $(this).attr("pac_da_title");
- $(this).attr("title", $pac_da_title);
- $(this).removeAttr("pac_da_title");
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement