what does it mean to have a style sheet disabled?
I just realised that its possible when i visited this page.. https://developer.mozilla.org/en/DOM/HTMLStyleElement
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 disable styles by setting the
disabledproperty on the element that loaded them (either astyleelement for inline styles, or alinkelement for linked stylesheets). When disabled, a stylesheet’s rules aren’t applied.Example:
CSS:
HTML:
(I know, I know,
ttis deprecated.)JavaScript:
Live copy