[jQuery] Re: Saving HTML as an image...

2009-01-12 Thread Paul Koppen
However, drawing using javascript *is* possible. You need the canvas tag. There is a public script that makes it possible to have one solution for both IE and Mozilla and Safari. Do check though, whether the user can do save as. I'm not sure. Another thing is, it doesn't involve jQuery... :( Good

[jQuery] Re: Saving HTML as an image...

2009-01-11 Thread Scott Sauyet
mumbojumbo wrote: I'm working on an application that will use jquery to make charts and graphs and I want to allow the user to save the html as an image. Can this be done? This really isn't a jquery question per se, but I would like to know if jquery could do it/ or if it can be done at all.

[jQuery] Re: Saving HTML as an image...

2009-01-11 Thread brian
You'll certainly have to look at something server-side. I suggest you create a form with hidden fields that jQuery populates (I'm assuming that the data is user-generated) and which is then sent to an application to create the chart/graph. If you use PHP, you coulduse the PEAR Image_Graph