Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <label class="control-label col-md-3">Utiliza Envase:</label>
  2. <div class="col-md-1">
  3. <input type="checkbox" id='showAreaBox' class="producto_Utl.Env">
  4. </div>
  5.  
  6. $('#showAreaBox').change(function() {
  7.  
  8. // if the checkbox is checked, invoke the link
  9. if(this.checked ) {
  10. $(window.location.replace("/Productos/<%= @producto.id %>/envase"))
  11.  
  12. }
  13.  
  14. // checkbox is unchecked
  15. // else {}
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement