Guest User

Untitled

a guest
Jul 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <script type="text/javascript" src="#WORKSPACE_IMAGES#jquery.qtip-1.0.0-rc3.min.js">
  2. </script>
  3. <script>
  4. jQuery(document).ready(function($){
  5. $('div table table[id^="report"]')
  6. .find("td:nth-child(2) input")
  7. .qtip({
  8. content: 'This is a Tooltip',
  9. show: 'focus',
  10. hide: 'blur',
  11. style: {
  12. name: 'blue', // Inherit from preset style
  13. position: {
  14. corner: {
  15. tooltip: 'topMiddle', // Use the corner...
  16. target: 'bottomMiddle' // ...and opposite corner
  17. }
  18. },
  19. tip : true
  20. }
  21.  
  22. })
  23. })</script>
Add Comment
Please, Sign In to add comment