I have the following css declaration in place:
#envelope:after
{
z-index: -1;
position: absolute;
}
How do I remove it (set it to empty at least) with jQuery at runtime?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t really “remove” a css rule with jQuery but you can override it for a specific item (or list of items) depending on used selector.
When you are talking about removing it, don’t you mean setting a new value instead ?
So if you want to “remove” your z-index, just set it to
which is the default value
Same for position