Guest User

Untitled

a guest
Jan 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. domain.com/section/red.html
  2. domain.com/section/blue.html
  3. domain.com/section/green.html
  4.  
  5. <div id="list">
  6. <ul>
  7. <li class="red"></li> (to red.html)
  8. <li class="green"></li> (to green.html)
  9. <li class="red"></li> (to red.html)
  10. <li class="blue"></li> (to blue.html)
  11. <li class="red"></li> (to red.html)
  12. <li class="green"></li> (to green.html)
  13. </ul>
  14. </div>
  15.  
  16. ​$("#submit").click(function(e){
  17. e.preventDefault();
  18. alert($("ul").find(".red").text());
  19. });​
Add Comment
Please, Sign In to add comment