How to use else if with in else if in jquery?
up vote
-3
down vote
favorite
am using if loop for jquery. everything working perfectly except one else if.. I have mentioned that block. My loop structure is,
$(document).ready(function()
if($.browser.mozilla)
if($('div').hasClass('js-form-item-panes-delivery-select-address'))
$('div#uc-address-panes-delivery-zone-wrapper').css('top','596px !important');
else if ( $.browser.webkit )
if($('div').hasClass('js-form-item-panes-delivery-select-address'))
$('div#uc-address-panes-delivery-zone-wrapper').css('top','547px');
else if ($('div').hasClass('.messages.messages--error'))
$('details#quotes-pane').css('color','green');
else
);
jquery
add a comment |
up vote
-3
down vote
favorite
am using if loop for jquery. everything working perfectly except one else if.. I have mentioned that block. My loop structure is,
$(document).ready(function()
if($.browser.mozilla)
if($('div').hasClass('js-form-item-panes-delivery-select-address'))
$('div#uc-address-panes-delivery-zone-wrapper').css('top','596px !important');
else if ( $.browser.webkit )
if($('div').hasClass('js-form-item-panes-delivery-select-address'))
$('div#uc-address-panes-delivery-zone-wrapper').css('top','547px');
else if ($('div').hasClass('.messages.messages--error'))
$('details#quotes-pane').css('color','green');
else
);
jquery
3
You need to mention the actual conditions if you want us to understand what is going on and help.
– Gabriele Petrioli
22 hours ago
I assume you've simplified your code for the purpose of this question, but you may have gone a little too far. That code looks like it will work, as written, so the problem is probably trusted to the surgical conditions you're checking. Can you share those?
– David Thomas
22 hours ago
It seems true could you share more detail?
– shaghayegh sheykholeslami
21 hours ago
add a comment |
up vote
-3
down vote
favorite
up vote
-3
down vote
favorite
am using if loop for jquery. everything working perfectly except one else if.. I have mentioned that block. My loop structure is,
$(document).ready(function()
if($.browser.mozilla)
if($('div').hasClass('js-form-item-panes-delivery-select-address'))
$('div#uc-address-panes-delivery-zone-wrapper').css('top','596px !important');
else if ( $.browser.webkit )
if($('div').hasClass('js-form-item-panes-delivery-select-address'))
$('div#uc-address-panes-delivery-zone-wrapper').css('top','547px');
else if ($('div').hasClass('.messages.messages--error'))
$('details#quotes-pane').css('color','green');
else
);
jquery
am using if loop for jquery. everything working perfectly except one else if.. I have mentioned that block. My loop structure is,
$(document).ready(function()
if($.browser.mozilla)
if($('div').hasClass('js-form-item-panes-delivery-select-address'))
$('div#uc-address-panes-delivery-zone-wrapper').css('top','596px !important');
else if ( $.browser.webkit )
if($('div').hasClass('js-form-item-panes-delivery-select-address'))
$('div#uc-address-panes-delivery-zone-wrapper').css('top','547px');
else if ($('div').hasClass('.messages.messages--error'))
$('details#quotes-pane').css('color','green');
else
);
jquery
jquery
edited 17 hours ago
asked 22 hours ago
swetha
268
268
3
You need to mention the actual conditions if you want us to understand what is going on and help.
– Gabriele Petrioli
22 hours ago
I assume you've simplified your code for the purpose of this question, but you may have gone a little too far. That code looks like it will work, as written, so the problem is probably trusted to the surgical conditions you're checking. Can you share those?
– David Thomas
22 hours ago
It seems true could you share more detail?
– shaghayegh sheykholeslami
21 hours ago
add a comment |
3
You need to mention the actual conditions if you want us to understand what is going on and help.
– Gabriele Petrioli
22 hours ago
I assume you've simplified your code for the purpose of this question, but you may have gone a little too far. That code looks like it will work, as written, so the problem is probably trusted to the surgical conditions you're checking. Can you share those?
– David Thomas
22 hours ago
It seems true could you share more detail?
– shaghayegh sheykholeslami
21 hours ago
3
3
You need to mention the actual conditions if you want us to understand what is going on and help.
– Gabriele Petrioli
22 hours ago
You need to mention the actual conditions if you want us to understand what is going on and help.
– Gabriele Petrioli
22 hours ago
I assume you've simplified your code for the purpose of this question, but you may have gone a little too far. That code looks like it will work, as written, so the problem is probably trusted to the surgical conditions you're checking. Can you share those?
– David Thomas
22 hours ago
I assume you've simplified your code for the purpose of this question, but you may have gone a little too far. That code looks like it will work, as written, so the problem is probably trusted to the surgical conditions you're checking. Can you share those?
– David Thomas
22 hours ago
It seems true could you share more detail?
– shaghayegh sheykholeslami
21 hours ago
It seems true could you share more detail?
– shaghayegh sheykholeslami
21 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
First problem
You must add close tag
At the end of your code
);
I checked you code work fine
But if the problem is in logic
Please enter values for checking
New contributor
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
First problem
You must add close tag
At the end of your code
);
I checked you code work fine
But if the problem is in logic
Please enter values for checking
New contributor
add a comment |
up vote
0
down vote
First problem
You must add close tag
At the end of your code
);
I checked you code work fine
But if the problem is in logic
Please enter values for checking
New contributor
add a comment |
up vote
0
down vote
up vote
0
down vote
First problem
You must add close tag
At the end of your code
);
I checked you code work fine
But if the problem is in logic
Please enter values for checking
New contributor
First problem
You must add close tag
At the end of your code
);
I checked you code work fine
But if the problem is in logic
Please enter values for checking
New contributor
New contributor
answered 18 hours ago
Majdi Mohammad
1
1
New contributor
New contributor
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237183%2fhow-to-use-else-if-with-in-else-if-in-jquery%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
3
You need to mention the actual conditions if you want us to understand what is going on and help.
– Gabriele Petrioli
22 hours ago
I assume you've simplified your code for the purpose of this question, but you may have gone a little too far. That code looks like it will work, as written, so the problem is probably trusted to the surgical conditions you're checking. Can you share those?
– David Thomas
22 hours ago
It seems true could you share more detail?
– shaghayegh sheykholeslami
21 hours ago