My Name:<input class="clr" id="name" type="text" /><span class="clr" id="name_error">Name is required</span> <br /><br />
My Email Adress:<input class="clr" id="email" type="text" /><span class="clr" id="email_error">Email is required</span> <br /><br />
My Organisation Name:<input class="clr" id="organisation" type="text" /><span class="clr" id="org_error">Organisation is required</span> <br /><br />
I have 3 input fields. I'm using span
to display error message when submitting empty fields.
My problem is, if name
field is empty, we should get "Name is required"
error, if email
field is empty, we should get "email is required"
error and so on.
For this, I'm writing below code.
if (name == "")
$("#name_error").show();
else
$("#name_error").hide();
if (email == "")
$("#email_error").show();
else
$("#email_error").hide();
if (organisation == "")
$("#org_error").show();
else
$("#org_error").hide();
Is there any way to reduce if/else statements?
My Name:<input class="clr" id="name" type="text" /><span class="clr" id="name_error">Name is required</span> <br /><br />
My Email Adress:<input class="clr" id="email" type="text" /><span class="clr" id="email_error">Email is required</span> <br /><br />
My Organisation Name:<input class="clr" id="organisation" type="text" /><span class="clr" id="org_error">Organisation is required</span> <br /><br />
I have 3 input fields. I'm using span
to display error message when submitting empty fields.
My problem is, if name
field is empty, we should get "Name is required"
error, if email
field is empty, we should get "email is required"
error and so on.
For this, I'm writing below code.
if (name == "")
$("#name_error").show();
else
$("#name_error").hide();
if (email == "")
$("#email_error").show();
else
$("#email_error").hide();
if (organisation == "")
$("#org_error").show();
else
$("#org_error").hide();
Is there any way to reduce if/else statements?
Share Improve this question edited Mar 4, 2013 at 14:22 Nope 22.3k8 gold badges49 silver badges73 bronze badges asked Mar 4, 2013 at 14:19 Ranadheer ReddyRanadheer Reddy 4,32212 gold badges57 silver badges78 bronze badges2 Answers
Reset to default 10Using jQuery effectively, you can do this way.
$('input.clr').each(function(){
if ($(this).val() == "")
$(this).next('span.clr').show();
});
Before that, we need to hide them this way:
$('span.clr').hide();
You could do this :
var obj = window; // or something else, depending on your scope
['name', 'email', 'organisation'].forEach(function(v) {
var $e = $('#'+v+'_error');
if (obj[v]=="") $e.show();
else $e.hide();
});
Note that
- this supposes a little more strictness, with the replacement of "org" by "organisation"
- I tried to mimic your code but changing at the root (i.e. where you fill the variables like
name
) would allow for a simpler code - if you know the DOM doesn't change and the error span always follows the input, Praveen's answer is probably simpler and suited