I need to change some information in an HTML file and I managed to reach to the elements using JSOUP. However, I faced a problem when trying to modify the following style element:
<style type="text/css">
#leftimage {
background: #FFFCEF
url("/image1.jpg");
}
</style>
I used the following code
Element txt=doc.select("style").first();
String t=txt.data();
String s=" #leftimage { background: #FFFCEF url('/image1.jpg');}";
txt.data().replace(t, s);
but nothing changed! Why isn't the color changing when I do this?