I have one more button on the page called Edit when I click on Edit button I need to Change the Add Button value to SAVE...using jquery..
thanks
You can use .val() to set the value of any input (including a button), like this:
$("#badd").val("Save");
Give it a try here, or just plain JavaScript:
document.getElementById("badd").value = "Save";