0
votes
[jQuery] Figure out div that is visible out of four divs.
When applicable, it's better to use contextual selectors rather than add spurious classes. For instance, if the <div> elements are the only children of an element with id= …
1
vote
jquery: JFrame plugin fails in IE 7
When you have a problem like this, the best way of tracking down the problem is to reduce the page to the minimum necessary to reproduce the problem.
"Ignore the [x] because I don't thi …
0
votes
How do I rotate an image at 12 midnight every day?
That depends on how you are rotating them - sequentially, randomly, or what?
There are a number of options. You can determine which image you want in PHP, and dynamically change your …
10
votes
How to make jQuery effects run in sequence, not simultaneously?
You can supply a callback to the effects functions that run after the effect has completed.
$("#show-projects").click(function() {
$(".page:visible").fadeOut("normal", function( …
6
votes
Best cross-browser method to capture CTRL+S with JQuery?
$(window).keypress(function(event) {
if (!(event.which == 115 && event.ctrlKey)) return true;
alert("Ctrl-S pressed");
event.preventDefault();
return false;
});
…
2
votes
JQuery create select list options from JSON, not happening as advertised?
$("#requestTypes") returns a jQuery object that contains all the selected elements. You are attempting to call the add() method of an individual element, but instead you …
1
vote
Building an HTML table on the fly using JQuery
What you are doing is building a string, and then parsing it all at once upon insertion. What about creating an actual table element (i.e. $("<table>")), and then adding each ro …
3
votes
Use jQuery to replace my XMLHttpRequest
Take out the readyState and status checks. jQuery only calls your callback upon success. Your callback is supplied the arguments (data, textStatus), so you should use data …
5
votes
How to correctly add a <select> to a page with jquery and let the change event work?
$('select').change(onChange($(this));
You need to understand the difference between calling a function and passing it around as an object. Functions are first- …
5
votes
How can I bind an event handler to an instance in JQuery
Just use an anonymous function:
$("#myButton").click(function() { myCar.drive(); });
…
4
votes
jquery: fastest DOM insertion ?
What are you attempting to avoid? "A bad feeling" is incredibly vague. If you have heard "the DOM is slow" and decided to "avoid the DOM", then this is impossible. Every method of inserting code …
3
votes
How can I get jQuery unclick() and unbind() to work?
There's no such thing as unclick(). Where did you get that from?
You can remove individual event handlers from an element by calling unbind:
$("#startButton"). …
9
votes
jQuery onClick execution
Just use a global busy flag. When you enter your click handler, check it, and only proceed if it's false. Immediately set it to true, and then set it back to false when the animation ends. JavaS …
1
vote
jQuery $().find problem
That isn't just an ordinary element name. That's a qualified name, meaning that it is a name that specifically refers to an element type within a namespace. The element type name is 'lat', and th …
0
votes
Accessing created DOM elements
var input1 = $( 'input[name="lp_name_1"]').clone(true);
The code you have posted does not indicate any element with that name attribute. Immediately before thi …
