I have a Python script that is doing some manipulation on a JPEG image. I pass some parameters to this script and call it from my HTML page. The script returns an img src=\"newi
You can dynamically create a new image, bind something to its load event, and set the source:
$('').bind('load', function() { $(this).appendTo('body'); }).attr('src', image_source);