Posts by lucas • 32 points
2 posts
-
2
votes1
answer26
viewsA: MVC Insert text into a label when the button is selected
Instead of using: $('#email').html(data); Use: $('#email').val(data);
-
-1
votes2
answers625
viewsA: Phonegap: How to save an image taken and transformed into Base64 in the Bank?
in a simplified way, you can store the image using inside the onPhotoDataSuccess function: localStorage.setItem("imageURI", imageURI); and then just retrieve the value before making the AJAX call:…