Jordan Feldstein
Jordan Feldstein
What are you doing in your onstart to access the values that isn't working? Can you paste that code? ~J (via phone) On Aug 23, 2012 5:37 AM, "swissdude" [email protected]...
`$(this).params` isn't what you think it is. Try `console.log($(this).params)` to see. I can help you find out how to access the right `.params` if you paste the code you're using...
If you add `console.log($('#form').serialize())` inside the onStart callback, does it print the data you'd expect to be sent with the form? We're trying to determine if we're even getting the...
Try remove()'ing it from the DOM, and creating (and re-initializing) an new input. Browsers have security checks so you can't fiddle with the value of File type inputs. ~ Jordan...
Can you: 1. Remove the default `maxSize` 2. Change validation to `if (maxSize && ...) {` so it won't complain if there is no maxSize specified 3. Fix conflicts
Also, please combine #33 into this PR.
Take a look at http://stackoverflow.com/a/17695034/311901 And give that a shot. You'll probably want to make a fork / pull-request for that. ~ Jordan See what I'm into on AngelList https://angel.co/jordan-feldstein...
Try calling .change() on the file input or initializing the ajax upload before the user chooses the file ~ J (via phone) On Mar 10, 2014 6:07 PM, "VitoAsaro" [email protected]...
If this is still an issue, could you post the code your using and I'll take a look? On Mar 11, 2014 11:05 AM, "VitoAsaro" [email protected] wrote: > I tried...
There should be examples in the readme. ~ Jordan See what I'm into on AngelList https://angel.co/jordan-feldstein On Tue, Mar 4, 2014 at 12:26 PM, Leon Gaban [email protected]: > I'm trying...