I have a problem writing a script that will prevent default behavior of submit button when option 1 from select box is selected. Here's the code:

http://jsfiddle.net/QgZHC/4/

Also on my website I'm using skinnable-select plugin but I don't know if that has any impact on the script. We'll be grateful for any help.

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

Try this: http://jsfiddle.net/QgZHC/7/

link|improve this answer
sorry, it's jsfiddle.net/QgZHC/7 – Sebastián Grignoli Jan 27 at 12:53
also, I would use $('#dupa') to find the select by ID instead of by class or by element name. – Sebastián Grignoli Jan 27 at 12:56
Thanks! That works great :) – Tomarz Jan 27 at 13:07
feedback
$('.send').click(function(e) {
    if ($('.dupa').val() == '2') {
       alert('Dupa');
       e.preventDefault();
    }
});
link|improve this answer
feedback

Try this:

if ($('.dupa').attr('value') != 1)
link|improve this answer
feedback

try

$('.send').click(function(e) {
    if ($('.dupa option:selected').val()==1) {
       alert('Dupa');
       e.preventDefault();
    }
});
link|improve this answer
feedback

Here you go Below is the updated script of your fiddle :

$('.send').click(function(e) {
var a = $('.dupa').val();
if(a == "1")
{
     alert('Dupa');
     e.preventDefault();  
}
});

Also check this : http://jsfiddle.net/QgZHC/6/

link|improve this answer
I'd rather point to the select by ID than to all of the option elements of the page – Sebastián Grignoli Jan 27 at 12:55
Thanks, but I don't think that is working because the alert doesn't display. Also when I select other options from select box value 1 still remains selected in html so the script will always prevent the default behavior of send button. – Tomarz Jan 27 at 12:56
check the fiddle: jsfiddle.net/QgZHC/13 – Dhaval Shukla Jan 27 at 13:08
feedback

Your Answer

 
or
required, but never shown

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