Ok, because I am such a noob and have no idea how javascript works... My thinking was flawed. I am halfway there now. I have taken one of the poster's suggestions and set up a function and then in the html form tag, I call it. This works. I thought that I needed to have an id selector to have JQuery trigger but that isn't the case. I'm sorry. I know I am not making any sense at all but please bear with me, I'm trying. :)
Now that I have the form pointing to the javascript/jquery script. I now need to fix the jquery. Here is the code.
function doSave(){
$(function() {
$('.error').hide();
$("#dfar").click(function() {
$('.error').hide();
var textArea = $('#dfarReport');
if (textArea.val() == "") {
alert('sd');
textArea.show();
textArea.focus();
return false;
}
For some reason, even though I press the submit button and have included the id selector of the text area I cannot see the alert. Can someone please tell me what I am doing wrong?