Guest User

Untitled

a guest
Jun 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $(document).ready(function() {
  2. $("a").hide();
  3. });
  4.  
  5. $(document).ready(function() {
  6. $("#my-unique-id").hide();
  7. });
  8.  
  9. $(document).ready(function() {
  10. $("a").eq(0).hide();
  11. });
  12.  
  13. $("selector").eq(0).show();
  14.  
  15. $("a-selector-which-returns-multiple-objects").SomejQueryFunctionForExampleShow().
Add Comment
Please, Sign In to add comment