How can I subtract -1 from the z-index, every time toggle is triggered?
I want to prevent it interfering with other toggles.
$(".button-info").click(function() {
$("#info").fadeToggle("fast");
$("#info").css("z-index", "-1");
});
jquery
add a comment |
I want to prevent it interfering with other toggles.
$(".button-info").click(function() {
$("#info").fadeToggle("fast");
$("#info").css("z-index", "-1");
});
jquery
add a comment |
I want to prevent it interfering with other toggles.
$(".button-info").click(function() {
$("#info").fadeToggle("fast");
$("#info").css("z-index", "-1");
});
jquery
I want to prevent it interfering with other toggles.
$(".button-info").click(function() {
$("#info").fadeToggle("fast");
$("#info").css("z-index", "-1");
});
jquery
jquery
edited Nov 16 '18 at 8:16
Krupesh Kotecha
2,06011134
2,06011134
asked Nov 16 '18 at 7:50
Techniker80145Techniker80145
62
62
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can use css
like below.
$("#info").css("z-index", function(index, val) {
return parseInt(val, 10) - 1;
});
add a comment |
You could write your own jQuery function if you want to use this combination a lot.
(function($) {
$.fn.fadeToggleZ = function() {
return this.fadeToggle("fast").css("z-index", (parseInt(this.css("z-index")) - 1));
};
}(jQuery));
$(".button-info").click(function() {
$("#info").fadeToggleZ();
});
.info {
position: absolute;
z-index: 10;
background: red;
}
.info2 {
position: absolute;
z-index: 5;
background: green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="button-info">Test</button>
<div id="info" class="info">testdiv</div>
<div id="info2" class="info2">testdiv2</div>
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53333526%2fhow-can-i-subtract-1-from-the-z-index-every-time-toggle-is-triggered%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use css
like below.
$("#info").css("z-index", function(index, val) {
return parseInt(val, 10) - 1;
});
add a comment |
You can use css
like below.
$("#info").css("z-index", function(index, val) {
return parseInt(val, 10) - 1;
});
add a comment |
You can use css
like below.
$("#info").css("z-index", function(index, val) {
return parseInt(val, 10) - 1;
});
You can use css
like below.
$("#info").css("z-index", function(index, val) {
return parseInt(val, 10) - 1;
});
$("#info").css("z-index", function(index, val) {
return parseInt(val, 10) - 1;
});
$("#info").css("z-index", function(index, val) {
return parseInt(val, 10) - 1;
});
answered Nov 16 '18 at 7:57
ShreeShree
12.5k2070121
12.5k2070121
add a comment |
add a comment |
You could write your own jQuery function if you want to use this combination a lot.
(function($) {
$.fn.fadeToggleZ = function() {
return this.fadeToggle("fast").css("z-index", (parseInt(this.css("z-index")) - 1));
};
}(jQuery));
$(".button-info").click(function() {
$("#info").fadeToggleZ();
});
.info {
position: absolute;
z-index: 10;
background: red;
}
.info2 {
position: absolute;
z-index: 5;
background: green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="button-info">Test</button>
<div id="info" class="info">testdiv</div>
<div id="info2" class="info2">testdiv2</div>
add a comment |
You could write your own jQuery function if you want to use this combination a lot.
(function($) {
$.fn.fadeToggleZ = function() {
return this.fadeToggle("fast").css("z-index", (parseInt(this.css("z-index")) - 1));
};
}(jQuery));
$(".button-info").click(function() {
$("#info").fadeToggleZ();
});
.info {
position: absolute;
z-index: 10;
background: red;
}
.info2 {
position: absolute;
z-index: 5;
background: green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="button-info">Test</button>
<div id="info" class="info">testdiv</div>
<div id="info2" class="info2">testdiv2</div>
add a comment |
You could write your own jQuery function if you want to use this combination a lot.
(function($) {
$.fn.fadeToggleZ = function() {
return this.fadeToggle("fast").css("z-index", (parseInt(this.css("z-index")) - 1));
};
}(jQuery));
$(".button-info").click(function() {
$("#info").fadeToggleZ();
});
.info {
position: absolute;
z-index: 10;
background: red;
}
.info2 {
position: absolute;
z-index: 5;
background: green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="button-info">Test</button>
<div id="info" class="info">testdiv</div>
<div id="info2" class="info2">testdiv2</div>
You could write your own jQuery function if you want to use this combination a lot.
(function($) {
$.fn.fadeToggleZ = function() {
return this.fadeToggle("fast").css("z-index", (parseInt(this.css("z-index")) - 1));
};
}(jQuery));
$(".button-info").click(function() {
$("#info").fadeToggleZ();
});
.info {
position: absolute;
z-index: 10;
background: red;
}
.info2 {
position: absolute;
z-index: 5;
background: green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="button-info">Test</button>
<div id="info" class="info">testdiv</div>
<div id="info2" class="info2">testdiv2</div>
(function($) {
$.fn.fadeToggleZ = function() {
return this.fadeToggle("fast").css("z-index", (parseInt(this.css("z-index")) - 1));
};
}(jQuery));
$(".button-info").click(function() {
$("#info").fadeToggleZ();
});
.info {
position: absolute;
z-index: 10;
background: red;
}
.info2 {
position: absolute;
z-index: 5;
background: green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="button-info">Test</button>
<div id="info" class="info">testdiv</div>
<div id="info2" class="info2">testdiv2</div>
(function($) {
$.fn.fadeToggleZ = function() {
return this.fadeToggle("fast").css("z-index", (parseInt(this.css("z-index")) - 1));
};
}(jQuery));
$(".button-info").click(function() {
$("#info").fadeToggleZ();
});
.info {
position: absolute;
z-index: 10;
background: red;
}
.info2 {
position: absolute;
z-index: 5;
background: green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="button-info">Test</button>
<div id="info" class="info">testdiv</div>
<div id="info2" class="info2">testdiv2</div>
edited Nov 16 '18 at 8:46
answered Nov 16 '18 at 8:28
Mark BaijensMark Baijens
6,832103353
6,832103353
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53333526%2fhow-can-i-subtract-1-from-the-z-index-every-time-toggle-is-triggered%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown