I have this form here and i dont want them to go to the next page without certain selections

<form method="post" action="step2/" id="form1">
....
....
....
<input type="submit" class="submit notext" value="Next" />

and here is my jquery

$('.submit').click(function(e) {
    var business = $(".business_type_select").find('.container strong').text();
    alert(business);
    if(business == "Select Business Type"){
        alert("BusinessBusinessBusiness");
        e.preventDefault;
        return false;
    }
});

any ideas what i am missing to get this to stop submitting

link|improve this question

74% accept rate
feedback

5 Answers

up vote 8 down vote accepted

Try using the submit event:

$("#formID").submit(function(e) {
    var business = $(".business_type_select").find('.container strong').text();
    alert(business);
    if(business == "Select Business Type"){
        alert("BusinessBusinessBusiness");
        return false;
    }
});

Also, the e.preventDefault() is a function, but is redundant as the return false will work just the same.

link|improve this answer
e.preventDefault should be a function call – Demian Brecht May 10 '11 at 20:51
feedback

preventDefault is a function - use e.preventDefault().

link|improve this answer
i tried that and still nothing – Matt May 10 '11 at 20:51
@tamer: Try a combination of my answer with @Jesse's.. Bind to the .submit event, using e.preventDefault(). – Demian Brecht May 10 '11 at 20:53
I got it ....i was a wrong another function calling it but () helped thanks – Matt May 10 '11 at 20:54
feedback

There are sometimes issues with .preventDefault() in IE try adding this:

if (e.preventDefault)      // checks to see if the event has a preventDefault method
    e.preventDefault();
else
    e.returnValue = false;
link|improve this answer
feedback
$("#formID").submit(function(e) {
    var business = $(".business_type_select").find('.container strong').text();
    alert(business);
    if(business == "Select Business Type"){
        alert("BusinessBusinessBusiness");
        e.preventDefault();
        return false;
    }
});
link|improve this answer
feedback

If your asp.net MVC razor form looks something like this:-

You can use (document) ID to validate form values using JavaScript. JavaScript validations fire prior to validations done using HTML Helpers ( @ValidationFor etc)..

@using (Html.BeginForm("MyRequestAction", "Home", FormMethod.Post))
{
@Html.ValidationSummary(true)
code goes here...
}
$(document).submit(function (e) {
    var catVal = $("#Category").val();
    if (catVal == "") {
        alert("Please select Category!");
        return false;
    }
    if (catVal == "--Select One--") {
        alert("Please select Category!");
        return false;
    }
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.