I'm using jcrop to crop my photos and need to send the current values along with my form submission. Is there an easy way to do this?
The JavaScript variable is this:
c = coords;
$.param(c)
Can I include this as a hidden field in my PHP form somehow?
<input type="hidden" name="coords" value=" ??? " />