Custom Query (13852 matches)
Results (19 - 21 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#15228 | migrated | Change the tag for 1.x on npm | ||
Description |
It turns out when doing
Therefore, we have to change the |
|||
#15227 | fixed | Remove optimization to make jQuery compatible with Google's Polymer project | ||
Description |
When Polymer platform is used together with jQuery, sometimes error happening:
Simplest reproducing is here I was able to prepare (happens on button mouseover): http://jsfiddle.net/p788rqq9/1/ Pull request is here: https://github.com/jquery/jquery/pull/1647 |
|||
#15226 | notabug | Invalidating issue #9521 | ||
Description |
When including "jquery migrate" library after jquery (in that particular order) you get to invalidate issue #9521, creating a XSS condition. <html><head> <script src='http://code.jquery.com/jquery-1.11.1.js'></script> <script src='http://code.jquery.com/jquery-migrate-1.2.1.js'></script> </head><body><a href="" ></a><script> $('a[href="' + window.location.hash + '"]'); </script></body></html> When passing a selector plus an item as a parameter: $('a[href="<img src=a onerror=alert()>"]'); And then calling. http://localhost/test.html#<img src=a onerror=alert()> Would trigger the XSS condition. |