Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var leSelect = $('#my-select'),
  2. noOfoptions = leSelect.children().length;
  3.  
  4. setInterval(function() {
  5. if(leSelect.children().length > noOfoptions) {
  6. console.log('boom. new option has been added');
  7. }
  8. }, 10000); // 10 seconds
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement