Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. $('input[name="city[]"]').click(function() {
  2. var checked = $('input[name="city[]"]').is(':checked');
  3. if(checked === true){
  4. $.post("site/cityzone?id="+$(this).val(), function( data ) {
  5. $("#city_list").append(data);
  6. });
  7. }
  8. else {
  9. $.post("site/cityzone?id="+$(this).val(), function( data ) {
  10. $("#city_list").remove(data);
  11. });
  12. }
  13. });
  14.  
  15. <li class="custom-checkbox">
  16. <input type='checkbox' name='city_zone[]' value='19' id='city_zoneКотовского поселок'>
  17. <label for='city_zoneКотовского поселок'>Котовского поселок</label>
  18. </li>
  19. <li class="custom-checkbox">
  20. <input type='checkbox' name='city_zone[]' value='20' id='city_zoneЛузановка'>
  21. <label for='city_zoneЛузановка'>Лузановка</label>
  22. </li>
  23. <li class="custom-checkbox">
  24. <input type='checkbox' name='city_zone[]' value='21' id='city_zoneПересыпь'>
  25. <label for='city_zoneПересыпь'>Пересыпь</label>
  26. </li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement