Custom Query (13852 matches)
Results (67 - 69 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#12609 | notabug | parseJSON issue that not happens with eval | ||
Description |
parseJSON can't parse something that can be parsed by: eval('('+ data +')') so, i replaced window.JSON.parse by previous line and all works. maybe string size? or a special char in string? btw, I used ff 15 Kind regards, Rinaldo |
|||
#12612 | notabug | Error: Syntax error, unrecognized expression | ||
Description |
What am i doing wrong here: mouseover over 'selectmenu' causes error. it did work with 1.7.2. |
|||
#12613 | notabug | set input size property in IE 6.7 | ||
Description |
When I'm in IE 6,7, use $('#someinput').attr('size', '20px'), IE will show error. I dig in jQuery 1.8.2, and find the code like this:
nodeHook = jQuery.valHooks.button = {
var ret = elem.getAttributeNode( name );
So, 'return (ret.value = value + "" )' should become 'return (ret.value = parseInt(value, 10) + "") ' Sorry for my bad English ... |