Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. new ts
  2. (() => {
  3. $(document).tooltip({
  4. content: function () {
  5. return $(this).prop('title');
  6. }
  7. });
  8. })();
  9.  
  10. old js
  11. $(function() {
  12. $(document).tooltip({
  13. content: function () {
  14. return $(this).prop('title');
  15. }
  16. });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement