I have a textbox and a button. When I click the button, it sets certain value in the textbox. I want to submit the page whenever the value of the textbox is changed.
Ple
You're changing the value of .set programatically, so the event doesn't fire. You have to trigger it manually:
.set
$('.set').val('Why am I not getting the alert saying - Changed! ').change();