3
votes
How do I get the number of days between two dates in jQuery?
function parseDate(str) {
var mdy = str.split('/')
return new Date(mdy[2], mdy[0]-1, mdy[1]);
}
function daydiff(first, second) {
return (second-first)/(1000*60*60*24)
}
alert …
2
votes
Floating point number in JS
Here's one way to see if two numbers are off by approximately a power of ten:
var correct = 3.93E-6;
var entry = 3.93E-2;
var epsilon = .01;
var log10_ratio = Math.log(correct/entr …
1
vote
Global console object in Safari/Chrome being reset.
Perhaps you might have more luck replacing the entire Console object? That worked for me:
window._console = window.console;
window.console = {
log: function() {
window. …
22
votes
what is the reserved keyword for NaN in javascript?
Test if a value is NaN with the isNaN() function, appropriately enough. …
0
votes
Problem getting Javascript variable to hidden input value
You can't use document.write after the page has finished loading (e.g. in an event handler, including $(document).ready). Instead, you can use the jQuery method …
5
votes
Count number of table rows between two specific rows with jQuery
This:
$('#parent_1 ~ .child:not(#parent_2 ~ *)').size()
Translation: match all elements of class child that are a sibling of, and come after, …
1
vote
How to capture the Ajax event that periodically refreshes the gmail inbox
You could try replacing the window.setTimeout function (and possibly window.setInterval) with your own functions:
window._setTimeout = window.setTimeout;
w …
2
votes
how to avoid nested switch?
Switch statements are very rarely necessary in Javascript. In general, you can just use objects like dictionaries/maps and do the lookup directly: foo.bar is equivalent to foo[' …
8
votes
The ternary operator and if A, B, else C. Are there any important differences?
Suppose:
var a = false, b = '', c = 'bar';
Then:
var foo = a ? b : c; // foo == ''
var foo = a && b || c; // foo == 'bar'
…
6
votes
Javascript: extending map objects
It's dangerous to modify Object.prototype, because it affects all objects and will usually break other li …
2
votes
On - window.location.hash - change?
As a side note, the current HTML5 draft specifies a hashchange event …
1
vote
Best way to integrate Python and JavaScript?
There's a bridge based on JavaScriptCore (from WebKit), but it's pretty incomplete:
http://code.google.com/p/pyjscore/
…
1
vote
Returning a host object in Rhino
public Scriptable jsGet_member() {
Scriptable scope = ScriptableObject.getTopLevelScope(this);
Member m = new Member();
m.setParentScope(scope);
// defin …
0
votes
How to do a “soft” if condition check in Javascript
If you need to do it a lot, a function version to get the property if it exists and return undefined otherwise is:
function propertyChain(root, chain) {
var properties = chain.s …
1
vote
Class method can’t access properties
JavaScript doesn't actually have classes. MyClass is the constructor for an object whose prototype is the object MyClass.prototype.
The this keyword …
