Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. $(document).ready(function () {
  4. if ($("#e1").length <= 4) {
  5. $("#e1").css("background-color", "red");
  6. };
  7. if ($("#e1").length > 4) {
  8. $("#e1").css("background-color", "yellow");
  9. };
  10. });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement