Can someone help me with a form issue I am facing?
<form>
<input type="text>'
<input type="submit">'
</form>''
After submitting the form, I would like to blur the entire form:
$(this).closest('form').css({
'filter' : 'blur(1px)'
});
The problem is that this also blurs my submit button. Is there a way to exclude the submit button from being blurred?