jquery - Remove CSS atribute from body::after -


i'm trying remove background-image attribute jquery had no success until now. '::after' don't let me remove-it. how can that?

body::after { background-image: url(../images/16_sm.jpg); }

try this,

html:

<body class='test'> 

css:

.test::after{  background-image: url(../images/16_sm.jpg); } 

js:

$('body').removeclass('test'); 

Comments

Popular posts from this blog

How to access named pipes using JavaScript in Firefox add-on? -

multithreading - OPAL (Open Phone Abstraction Library) Transport not terminated when reattaching thread? -

node.js - req param returns an empty array -