Guest User

Untitled

a guest
May 19th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.23 KB | None | 0 0
  1. $("#Race_name").change(function(){
  2. var value = $(this).val();
  3. $.getJSON("/legiontd/tower/towers?race=" + value,
  4.  function(json){
  5.  $.each(json.tower, function(){
  6.           $("#towerlist").html(json.tower.name);
  7.           });
  8. });
  9. });
Add Comment
Please, Sign In to add comment