Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('#evtTarget').bind('mouseover',function () {
  3. $(this).toggleClass('highlighted');
  4. });
  5. $('#evtTarget').bind('mouseleave',function () {
  6. $(this).removeClass('highlighted');
  7. });
  8. // $('#evtTarget').bind('mouseover',this, function () {highlight(this)});
  9.  
  10. $('#evtTarget').click(function () {
  11. $(this).unbind();
  12. $(this).html("<p> Podświetlanie wyłączone </p>");
  13. });
  14.  
  15. function highlight(evt) {
  16. $(evt).toggleClass('highlighted')
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement