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 …
3
votes
Find coordinates of every link in a page
Using jQuery, it's as simple as:
$("a").each(function() {
var link = $(this);
var top = link.offset().top;
var left = link.offset().left;
var width = link.offset.wid …
1
vote
How can I save some JavaScript state information back to my server onUnload?
You can use an Ajax request, but be sure to make it a synchronous request rather than an asychronous one. Alternatively, simply save state whenever the user makes a change, this also protects the …
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;
});
…
13
votes
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
What is the best method to detect offline mode in the browser?
See the HTML 5 draft specification. You want navigator.onLine. Not all browsers support it yet. Firefox …
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 …
3
votes
Disable button on form submission
Disable the button at the very end of your submit handler. If the validation fails, it should return false before that.
However, the JavaScript approach is not something that can be relied …
5
votes
How can I bind an event handler to an instance in JQuery
Just use an anonymous function:
$("#myButton").click(function() { myCar.drive(); });
…
5
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 …
8
votes
What’s the best way to introduce non-majors to HTML / programming?
HTML and JavaScript would definitely not be my approach. Markup and programming are two very different things. Throwing JavaScript into the mix goes some way to deal with that, but it al …
6
votes
What’s the best way to detect if a given Javascript object is a DOM Element?
jQuery checks the nodeType property. So you would have:
var overloaded = function (arg) {
if (arg.nodeType) {
// Code for DOM Element argument...
}
};
…
