the html:
<div class="tpc_content">
....
</div>
Here's the style snippet:
<style>
.tpc_content{ background: url('/aliwayWaterMaker.php') repeat !important; }
</style>
When I invoked $('.tpc_content').css('background');
at console from developer tools in Chrome, the output is:
"rgba(0, 0, 0, 0) url(http://www.aliway.com/aliwayWaterMaker.php) repeat scroll 0% 0% / auto padding-box border-box"
Then I tried to set this css property via command: $('.tpc_content').css('background', "rgba(20, 30, 40, 0)");
, after which I sent $('.tpc_content').css('background');
again, and the output was still:
"rgba(0, 0, 0, 0) url(http://www.aliway.com/aliwayWaterMaker.php) repeat scroll 0% 0% / auto padding-box border-box"
Could anyone tell me how to remove the background image via jquery or javascript after the page loading?