Skip to content

Instantly share code, notes, and snippets.

@jpalala
Created October 20, 2011 03:38
Show Gist options
  • Save jpalala/1300359 to your computer and use it in GitHub Desktop.
Save jpalala/1300359 to your computer and use it in GitHub Desktop.
post to another php page with data from form and then populate select
var data = { 'sonum' : $('#soid').val() };
$.post('ajax/get_available_roles.php', data,
function(postdata) {
$("select#roles").html(postdata);
},'html'); //returns <op>blahblah</op>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment