Side navigation
#10519 closed bug (worksforme)
Opened October 18, 2011 10:43AM UTC
Closed October 30, 2011 12:17PM UTC
.live doesn't work in Opera when using $('[myAttribute]') selector
Reported by: | artur.regs@gmail.com | Owned by: | artur.regs@gmail.com |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | selector | Version: | 1.6.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
the following code reproduces the problem:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
</head>
<body>
<div myAttribute="">zxc</div>
<script>
$('[myAttribute]').live('click', function () {alert('qq');}); //this doesnt work in Opera (but works in FF/Chrome)
$('[myAttribute]').each(function () {alert('qq');}); this works
$('[myAttribute*=""]').live('click', function () {alert('qq';)}); //and this also works
</script>
</body>
</html>
Attachments (0)
Change History (3)
Changed October 19, 2011 04:20PM UTC by comment:1
component: | unfiled → selector |
---|---|
owner: | → artur.regs@gmail.com |
priority: | undecided → low |
status: | new → pending |
Changed October 30, 2011 08:01AM UTC by comment:2
status: | pending → new |
---|
It's not reproducible with Edge version (but reproducible with 1.6.4), so the bug could be probably closed.
Here's the jsFiddle link (just for reference): http://jsfiddle.net/Y7GXL/3/
Changed October 30, 2011 12:17PM UTC by comment:3
resolution: | → worksforme |
---|---|
status: | new → closed |
Confirmed
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket.
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/FrKyN/ Open the link and click to "Fork" (in the top menu) to get started.