This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Post the data | |
var fd = new FormData(); | |
fd.append("name", "some_filename.jpg"); | |
fd.append("image", dataurl); | |
fd.append("info", "lah_de_dah"); | |
$.ajax({ | |
url: '/ajax_photo', | |
data: fd, | |
cache: false, | |
contentType: false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Turn this | |
location name Jan-2010 Feb-2010 March-2010 | |
A "test" 12 20 30 | |
B "foo" 18 20 25 | |
into this | |
location name Date Value |
NewerOlder