John, I was wondering if You would like to add to 1.4, this simple solution, for the IE8 JSON.stringify bug, as described here: http://blogs.msdn.com/jscript/archive/2009/06/23/serializing-the-value-of-empty-dom-elements-using-native-json-in-ie8.aspx
<pre><code> if (JSON.stringify(document.createElement("input").value)!== "" ) { var _stringify = JSON.stringify; JSON.stringify = function(o, f, s){ return _stringify(o === "" ? "" : o , f, s); } } </code></pre> This might solve few "unexplicable" bugs, happening in IE8+jQuery ;o)
-- You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to jquery-...@googlegroups.com. To unsubscribe from this group, send email to jquery-dev+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en.