Skip to content

Commit

Permalink
trying to escape the html :/
Browse files Browse the repository at this point in the history
  • Loading branch information
danheberden committed Feb 2, 2012
1 parent 3926841 commit b64ee88
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ $.fn.serializeObject makes an object out of form elements inside of the specifie

Example:
```html
<div id="test">
<input name="text1" value="txt-one" />
<input type="checkbox" name="top[child][]" value="1" checked="checked" />
<input type="checkbox" name="top[child][]" value="2" checked="checked" />
<input type="checkbox" name="top[child][]" value="3" checked="checked" />
<div id="test">
<input name="text1" value="txt-one" />
<input type="checkbox" name="top[child][]" value="1" checked="checked" />
<input type="checkbox" name="top[child][]" value="2" checked="checked" />
<input type="checkbox" name="top[child][]" value="3" checked="checked" />

<select name="another[select]">
<option value="opt"></option>
</select>
</div>
<select name="another[select]">
<option value="opt"></option>
</select>
</div>
```

```javascript
Expand Down

0 comments on commit b64ee88

Please sign in to comment.