Guest User

Untitled

a guest
Jun 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. (function($) {
  2. $.fn.opacityCheck = function(key) {
  3. if (key == ':visible') {
  4. if (this.css('opacity') == 1) {
  5. return true;
  6. }
  7. return false;
  8. }
  9. else if (key == ':invisible') {
  10. if (this.css('opacity') == 0) {
  11. return true;
  12. }
  13. return false;
  14. }
  15. };
  16. })(jQuery);
Add Comment
Please, Sign In to add comment