Side navigation
#11609 closed bug (duplicate)
Opened April 19, 2012 10:09PM UTC
Closed April 19, 2012 10:11PM UTC
Last modified April 19, 2012 10:11PM UTC
jQuery.trim() does not function in IE
Reported by: | s.varlitskiy@gmail.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.7 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The trim function does not work correctly in IE 9.0.8112.16421. Please look in to this, there is nothing complicated. Just run the following code:
var myVar = 'AB012'; alert(myVar); myVar.trim(); //code breaks here in IE alert(myVar);