| jquery Programming Glossary: imgdataJqPlot As Image http://stackoverflow.com/questions/12182598/jqplot-as-image  jqplot   share improve this question   Here's the simplest example I can code up after creating your plot do var imgData '#chart1' .jqplotToImageStr given the div id of your plot get the img data var imgElem ' img ' .attr 'src' imgData create.. var imgData '#chart1' .jqplotToImageStr given the div id of your plot get the img data var imgElem ' img ' .attr 'src' imgData create an img and add the data to it '#imgChart1' .append imgElem ‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€‹â€.. 
 Javascript wait for image to load before calling Ajax http://stackoverflow.com/questions/4943495/javascript-wait-for-image-to-load-before-calling-ajax  resourceData.length Create the image '#thePage' .append ' img alt Big id imgA' newImgID ' src ' uploadFolder ' ' imgData imgIndex 1 ' class mediaImg ' Get properties var imgW '#imgA' newImgID .width var imgH '#imgA' newImgID .height var imgX.. resourceData.length var newImage Create the image newImage ' img alt Big id imgA' newImgID ' src ' uploadFolder ' ' imgData imgIndex 1 ' class mediaImg ' newImage.load function  Get properties var imgW newImage.width var imgH newImage.height var.. we hook load to be really sure. To do that change newImage ' img alt Big id imgA' newImgID ' src ' uploadFolder ' ' imgData imgIndex 1 ' class mediaImg ' newImage.load function ...  '#thePage' .append newImage to newImage ' img alt Big id imgA'.. 
 |