Custom Query (13852 matches)
Results (43 - 45 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#15200 | duplicate | auto lower casing attribute values | ||
Description |
Hi! This fact is nonsense, but it exists! jQuery make auto lower casing attribute values... for example (svg): baseProfile -> baseprofile.., and so on... ;( |
|||
#15199 | wontfix | Bug in Chrome, no show Syntax error | ||
Description |
This code works in Chrome Correctly (My version: 36.0.1985.125 m) instead of: "Error: Syntax error, unrecognized expression: input[name=test_name" <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> </head> <body> <form> <input type="text" name="test_name" value="hi!" /> </form> <script> var ready = $("input[name=test_name]"); console.log(ready.val()); var error = $("input[name=test_name"); console.log(error.val()); </script> </body> </html> |
|||
#15198 | migrated | JQuery's trigger method doesn't populate currentTarget | ||
Description |
This problem (see subject) makes jQuery not completely compatible with some libs, which uses currentTarget. For example following example will not work correctly: http://jsfiddle.net/makfruit/C5QH3/ go to "Vegetables > *Cucumber" and press "Activate next" button. It will perform only radio button changes, but attached handlers will not be triggered. If we will click radio buttons manually, we can see the changes in price and description, etc. The following workaround will help: var event = jQuery.Event('change'); event.currentTarget = event.target = parent[0]; parent.trigger(event); but anyway it seems like jQuerry bug. Also I found the same requests in GWT groups. http://code.google.com/p/google-web-toolkit/issues/detail?id=8634 |