1<input type='button' value='Add' id='btnAddProfile'>
2$("#btnAddProfile").attr('value', 'Save'); //versions older than 1.6
3
4<input type='button' value='Add' id='btnAddProfile'>
5$("#btnAddProfile").prop('value', 'Save'); //versions newer than 1.6
6
7<!-- Different button types-->
8
9<button id='btnAddProfile' type='button'>Add</button>
10$("#btnAddProfile").html('Save');
11