Bug Tracker

Opened 12 years ago

Closed 12 years ago

Last modified 11 years ago

#7370 closed bug (invalid)

IE 8 trim BUG

Reported by: [email protected] Owned by:
Priority: undecided Milestone: 1.5
Component: unfiled Version: 1.4.3
Keywords: Cc:
Blocked by: Blocking:

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 (1)

comment:1 Changed 12 years ago by snover

Resolution: invalid
Status: newclosed

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.

Note: See TracTickets for help on using tickets.