views:

365

answers:

1

Is there a way to fire a postback to the server through jQuery?

I've tried just putting the postback signature in a .change method on a hiddenfield but it causes a full postback.

A: 

If you want to post to the server use jquery's ajax/get/post method(s): http://docs.jquery.com/Ajax

Also, you may have triggered the full request because the .change function didn't return false. Just a thought...

daddywoodland

related questions