-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added .serialize()
support. Fixes #69
#632
Added .serialize()
support. Fixes #69
#632
Conversation
cc71303
to
c855375
Compare
I have caught up this PR with the changes from landing #631 to |
c855375
to
ddd4fd0
Compare
I have chosen to take the shorter path and stripped out everything from var value = data.value == null ? '' : data.value; I cannot seem to find a case when Line 38 in ccd9369
|
@twolfson I can't think of a case where data.value is |
ddd4fd0
to
dcd6680
Compare
I have updated the PR to ditch the |
There's a merge conflict and I no longer have write access to the source repo. I'm going to close and reopen this PR. @mh166 You can point to a https://docs.npmjs.com/files/package.json#urls-as-dependencies "cheerio": "git://github.com/underdogio/cheerio#dcd66809" |
I have opened the replacement PR #827 |
Thanks! It's greatly appreciated! |
Now that #631 is implemented, we can add
.serialize()
support. Unfortunately, this comes with adding$.param()
.$.param
has a second half that.serialize()
doesn't leverage (see itselse
statement). I am not sure whether we want to add this/test it, or drop it and make$.param
internal only for now.In this PR:
.serialize()
support http://api.jquery.com/serialize/.serialize()