Modify ↓
Ticket #7370 (closed bug: invalid)
IE 8 trim BUG
| Reported by: | xxcoderz@… | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | 1.5 |
| Component: | unfiled | Version: | 1.4.3 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
this code not work in ie , work fine under ff , chrome
<input type="text" value="Your Name" id="mail_list_name" class="ie8text" />
.
.
...
var name = $('#mail_list_name').val().trim();
...
..
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Thanks for the report, but this is not a jQuery bug. Calling val with no arguments returns a string. trim happens to be a string function in JavaScript 1.8.1, which IE does not implement. The correct function in jQuery is jQuery.trim. In the future, please use the jQuery Forum for support requests.