If you need to stop the image beign changed by a later script you can add this:
Category: Manipulating HTML
Changing href of a link
Use this in the page footer (after the element to be changed)
Adding onclick functionality to an html element
Use this in the page footer (after the element to be changed) Change the html content and add an on click submit form to a span
Changing the contents of html elements
Element types? Can be anything, so <div id=”, <span id=”, <p id=”, etc In your html To manipulate text within a block of text you could you span instead of div In your javascript If using jquery $(“#my_target_div”).html(“<p>Hello</p>”); Note that this will overwrite if you already have content between the div tags