Okay, I got some help at the conference but I'm not sure why I'm struggling still with this. I'm more than positive its the code but it seems correct. I got it to hide the submit button. But when I click the signature button. it just make a blank or it put a blank and a signature.
$(document).ready(function () {
$('.Approve').hide();
$('.signSignatureBtn').click(function () {
$('.Approve').show();
});
$(document).on('click','.form-sig-remove',function(){
$('.Approve').hide();
});
});