Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. $(document).on('ready',function (){
  2. alert("hola!");
  3. $.post("scripts/json_p.asp?m=prv",
  4. function(data) {
  5. var $select = $("#prv_codigo");
  6. $.each(data, function(id, name) {
  7. $select.append('<option value=' + data.id + '>' + data.name + '</option>');
  8. });
  9. });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement