Custom Query (13852 matches)
Results (46 - 48 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#5663 | invalid | UI/Carousel dome doen't work anymore... | ||
Description |
sorry for that I don't know where I should put this problem If there's somebody who could move this ticket for proper position.. go ahead.. I've gotten through the problem and here is the solution.. The code which is listed in UI/Carousel > Example > view source "http://jquery-ui.googlecode.com/svn/trunk/ui/ui.core.js" the link should be this "http://jqueryui.com/latest/ui/ui.core.js" thanks |
|||
#12478 | invalid | Extra characters at junction of 'display' and 'non-display' when selecting MORE. | ||
Description |
Greetings, Using ‘jquery-latest.js’, trying to create the ‘shortening’ (more/less) for text, displaying 115 characters. Refer to : http://test.executivecaliber.com/moreless.htm for my test page, you can see at the junction of the displayed vs. no-displayed when you click MORE. Paragraph one: “work” becomes “work..” Paragraph two: “Moroc…” becomes “Moroc cco” Etc. If I should be using a different jquery script… please let me know. Thank you, Eric S. Zipp |
|||
#900 | fixed | get(0) or [0] on an empty resultset returns the document element | ||
Description |
On the packed and unpacked version downloadable on jquery.com, you get the following inconsistent behaviour : Lookup for an element that doesn't exist : var x = $('#something') // => [ ] x[0] // => Document x.get(0) // => Document Here is the code I've used to reproduce the bug : <html>
$(function() {
})
</html> |