Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<input type='button' value='Add' id='btnAddProfile'>
<script>
$(document).ready(function(){
$(":button").click(function(){
$("p").toggle();
if (this.value=="Delete") this.value = "Save";
else this.value = "Delete";
});
});
</script>
</body>
</html>
The most helpful JQUERY solutions