Custom Query (13852 matches)
Results (1 - 3 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#217 | invalid | Sabrina | ||
Description |
This is a summary for all things related to the work on the ajax module. There is quite a lot to do... Related reports: http://jquery.com/dev/bugs/bug/196/ - Is this really a problem jQuery needs to care about? Klaus: "In my opinion, jQuery shouldn't be responsible for others bad code." http://jquery.com/dev/bugs/bug/210/ - Should be handled by merging the form plugin http://jquery.com/dev/bugs/bug/159/ - Should be applied before merging form plugin, after adding all necessary tests http://jquery.com/dev/bugs/bug/216/ - much later http://jquery.com/dev/bugs/bug/195/ - allow local timeout, see handlers below http://jquery.com/dev/bugs/bug/165/ - catch lastModified exception: start testing logging statements here! Global and local handlers: Add a global global flag, defaults to true: This will, by default, call all global ajax handlers; Can be changed global (eg. $.ajaxGlobal = false) or per request, eg. $.ajax({..., global: false, ...}); Attaching global handlers to DOM elements doesn't make much sense in most cases, but it is nice to be able to chain them. Check if it is possible to do this: var start = function() {...}; var stop = function() {...}; $.ajaxStart(start).ajaxStop(stop) Maybe we should stop putting all and everything into $ namespace: $.ajax.start(start).stop(stop); Whatever change is made, complete the tests first and make sure that backwards compability is not broken. Maybe mark methods or functions as deprecated, but delay there "official" removal for a 2.x release. To prevent bloating the code, do this only if it is really useful. |
|||
#279 | invalid | Ben | ||
Description |
If I do $("a").filter(".x,.y.z") I don't get the correct selection. I would have expected to get the same as $("a.x").add("a.y").add("a.z") PS: version 1.0.2 |
|||
#1239 | fixed | hide function broken in Safari on elements not in DOM (see example) | ||
Description |
var p = $('<p>test</p>').hide(); alert(p[0].style.display); In Firefox, correctly displays 'none', in Safari this is blank. The effect is when preparing a new element to fade in to the page the fade doesn't work in Safari (because it's already fully visible). Tested with jQuery 1.1.3a, Firefox 2 and Safari 2 on OS 10.4 and IE7. Work around: var p = $('<p>test</p>').css('display', 'none'); alert(p[0].style.display); |