Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $(document).ready(function(){
  2. var rules = [];
  3.  
  4. //attach to the button a click event
  5. $('#add').click(function(){
  6. //get the value from the textbox
  7. //var jsarray = $('#jsarray').val();
  8. // alert(document.getElementById('value').value);
  9. var rule = document.getElementById('field').value +":"+document.getElementById('operator').value + document.getElementById('value').value;
  10. rules.push(rule);
  11. alert(rules);
  12.  
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement