Custom Query (13852 matches)
Results (34 - 36 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#15211 | migrated | contains a 'value' attribute selector not working in IE8 | ||
Description |
In firefox, chrom, ie9+ works as expectd, logs values hello and hello again. In ie8 (emulator and the real one) logs for non existing values as well - had to add a fix to check if value is nothing <html> <head> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $("input[type=hidden][id$='HF'][value]").each(function (index) { console.log($(this).val()) }); }); </script> </head> <body> <input type="hidden" id="1HF" /> <input type="hidden" id="2HF" /> <input type="hidden" id="3HF" value="hello" /> <input type="hidden" id="4HF" value="hello again" /> </body> </html> |
|||
#15210 | migrated | 2.1.2-pre, ajax.js: environments that don't have 'location' variable will break | ||
Description |
It appears that the change which removes the "IE workaround" on ajax.js now breaks environments that do not have window.location. To be specific: (from https://github.com/jquery/jquery/blob/master/src/ajax.js#L44) ajaxLocation = location.href, When I try to run automated tests using jasmine-node, location is undefined (because there is no "browser" sorta), and therefore the test breaks. Using the previous version (2.1.1-pre) works fine, but it appears that the change introduced in 2.1.2-pre now breaks the environment. |
|||
#15209 | patchwelcome | Scripts not being evaluated | ||
Description |
Scripts are not being evaluated when I expect them to. See here: http://jsfiddle.net/fz53r1kj/1/ In the jsFiddle, str1 is equal to the following. str2 is the same without the first script (which sorts). <script>
</script> <div class="rows">
</div> When appending str1, the scripts in the rows do not run. When appending str2, the scripts in the rows run. Thus it appears appending the elements a second time prevents the scripts inside from running. Using jsFiddle this appears in chrome, firefox, and safari on Mac for all jquery versions 1.9.1 and later. It works as expected in 1.8.3 and earlier. |