11
votes
How can I give control back (briefly) to the browser during intensive JavaScript processing?
It just so happens that I was posting about this a moment ago …
2
votes
Change of class does not result in the new class’s rules being applied in IE6??
Guess one: Rendering bug 1
Make sure that you have triggered hasLayout on the elements. You can do this by giving them a height or, if that isn't a posibility then position = relative & …
2
votes
Is there a way to do a ‘scoped’ add() in jQuery?
You can pass a jQuery collection into add just as well as a selector string:
$(".setA", ancestorOfSetsA).add( $(".setB", ancestorOfSetsB) );
If you wa …
6
votes
How do remove jQuery validation from a form?
You can remove events of nodes with unbind:
jQuery('form#listing').unbind('submit'); // remove all submit ha …
1
vote
jCarousel with unknown content width
The closest thing to what you want is probably jscrollhorizontalpane. I've never used it so I can't vouch for it …
0
votes
change width more than 32767 with jquery
This is definitely a bug with Opera.
Coincidentally, I was seeing it for the first time just yesterday. In my situation I have an inner container with width:9999em and an out …
4
votes
Using jQuery for first time, simple problem!
First off, numerical ID's are not valid HTML. ID attributes must start with a-z. I recommend changing your HTML like this:
<p><a href="#msg1">Link 1</a></p>
…
0
votes
How to make scroller in jQuery?
If you feel like rolling your own then I have a basic recipe for building this kind of carousel in an answer to …
2
votes
What is the fastest way to get a dom element?
DOM manipulation uses native functions to perform simple operations. Browser vendors optimize these. You are building the row from HTML. Internally jQuery is using .innerHTML to build …
5
votes
How to get elements which have no children, but may have text?
Get any element that doesn't have any other element:
$('*:not(:has(*))');
…
3
votes
Amazon-like interface for selecting product size and color (i.e., click a little red box to select a red product, etc)
Here is how to do this properly using progressive enchancement. The idea is simple, turn a decently marked up HTM …
0
votes
How do I remove characters from a textbox when the number of characters exceeds a certain limit?
A variation on a theme:
$("#textarea").keyup(function(e) {
var trim = this.value.substr( 0, 140 ); // "foo".substr(0, 140) == "foo"
if ( this.value != trim ) {
this.v …
1
vote
jQuery events chain - from stack to queue
Short answer: You can't do this.
Although in praxis browsers run events in the sequence that they were assigned you cannot trust that they will always do this. Also note that cancellations …
0
votes
How to capture enter key being pressed on pages containing multiple forms?
page contains multiple forms, and the
application would not be able to
determine (or, so I am told) which
form to action.
When you press enter on an input …
5
votes
nearest ancestor node in jQuery
Adding to @nickf's answer:
jQuery 1.3 simplifyed this task with closest.
Given a DOM:
& …
