Custom Query (13852 matches)
Results (49 - 51 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#15190 | notabug | Cannot get or set custom properties | ||
Description |
First things first, I've searched for similar tickets and yes I found the one were somebody confused props with attributes. I am not making the same mistake here. It does work with .attr('prop', 'prop') but I don't want to add prop="prop" to the element, I just want to add prop. |
|||
#15189 | migrated | Basic Authentication does not work with JSONP | ||
Description |
When sending Basic Authentication credentials with an jQuery AJAX request like so: $.ajax({
}); It doesn't work because the dataType is JSONP. Changing the dataType to JSON works. However if you need to use JSONP for CORS, you have to do the following workaround: $.ajax({
}); |
|||
#15188 | notabug | BUG: ajax async cors | ||
Description |
I use the following code to determine whether a new version can be used. $.support.cors = true; $.ajax({ url: 'http://code.jquery.com/jquery-{version}.js', type: 'GET', async: false }); But produced a BUG: "NetworkError: 405 Not Allowed - http://code.jquery.com/jquery-2.1.1.js" jquery-2.1.1.js NS_ERROR_FAILURE jQuery requires a window with a document |