Side navigation
#9620 closed bug (invalid)
Opened June 20, 2011 09:45AM UTC
Closed July 05, 2011 07:48AM UTC
Events Exception on IE
Reported by: | mapher87@gmail.com | Owned by: | mapher87@gmail.com |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | event | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
trigger a list of objects return from a jQuery selector use '.click()' for exemple, will find some unexpected actions on IE, which display works well on FF.
my code like this:
$("#"+tableID+"_cb_"+pk).click(); bad action on IE, but FF;
$("#"+tableID+"_cb_"+pk)[0].click(); done well;
Attachments (0)
Change History (4)
Changed June 20, 2011 10:38AM UTC by comment:1
Changed June 20, 2011 12:53PM UTC by comment:2
component: | unfiled → event |
---|---|
owner: | → mapher87@gmail.com |
priority: | undecided → low |
status: | new → pending |
Thanks for taking the time to contribute to the jQuery project! Please provide a reduced jsFiddle test case to help us assess your ticket! (in its current form, your code is incomplete).
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/rwaldron/da3nM/. Open the link and click to "Fork" in the top menu.
Changed June 21, 2011 06:01AM UTC by comment:3
js:
function trMove(from_table, desti_table){
move <tr>s from one table to another, according to saved items;
}
function filter_td_click(td_self, pk){ function to trigger checkbox event
var tableID = $(td_self.parentNode.parentNode.parentNode).attr('id');td->tr->tbody|thead|tfoot->table;
$("#"+tableID+"_cb_"+pk).cloick(); can only function at the first movement, at trMove()
$("#"+tableID+"_cb_"+pk)[0].click();
}
function on_checkboxChange(str_item){
saveChangeList(str_item, true); save changed items;
}
html:
<td><input type="checkbox" id="checked_field_cb_{{ checked_object.pk }}" class="for_checked" onclick="javascript: checkboxChange('{{ checked_object.pk }}')"/></td>
<td class="clickable" onclick="javascript: filter_td_click(this, '{{ checked_object.pk }}')">{{ checked_object }}</td>
>>>>>>>>>>>>>>>>
i've downloaded jQuery.1.6.1, and test on the IE 7|8, the problem occurred again.
Changed July 05, 2011 07:48AM UTC by comment:4
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
the problem occured when i try to use '.trigger("click")' instead of use '.click()', but it worked even worse for it couldn't be corrected.