4
votes
How to implement “DOM Ready” event in a GreaseMonkey script?
GreaseMonkey scripts are themselves executed on DOMContentLoaded, so it's unnecessary to add a load event handler - just have your script do whatever it needs to to immediately.
…
6
votes
Is there a better way to create an object-oriented class with jquery?
I quite like John Resig's Simple JavaScript Inheritance.
var MyWidget = Class.extend({
init: func …
3
votes
What JavaScript Repository should I use?
JSAN (JavaScript Archive Network) sounds like the kind of thing you're looking for, but I've never personally used anything from it apart from Test. …
9
votes
Logging JavaScript-Errors on Server
You could try setting up your own handler for the onerror event and use XMLHttpRequest to tell the server what went w …
1
vote
How do you dynamically create a radio button in Javascript that works in all browsers?
Here's an example of more general solution which detects IE up front and handles other attributes IE also has problems with, extracted from …
6
votes
How can I select an <img> element programmatically using JavaScript?
Here's an example which selects the first image on the page (which will be the Stack Overflow logo if you test it out on this page in Firebug):
var s = window.getSelection()
var r = …
1
vote
How do I make an Ajax.Autocompleter perform a request without typing?
Having looked at the Scriptaculous source to see what happens on keypress, I would suggest you …
3
votes
What’s a good tool to screen-scrape with Javascript support?
You could use Selenium or WATIR to drive a real browser (IE only in WATIR's case). …
4
votes
1
vote
How does “this” keyword work within a JavaScript object literal?
Function calls
Functions are just a type of Object.
All Function objects have …
5
votes
Is there a way to catch the back button event in javascript?
I think you'll just have to use setInterval to poll the state of window.location.hash regularly.
var hash = location.hash;
setInterval(function()
{
if …
5
votes
Client/JS Framework for “Unsaved Data” Protection?
One piece of the puzzle:
/**
* Determines if a form is dirty by comparing the current value of each element
* with its default value.
*
* @param {Form} form the form to be check …
1
vote
What’s the best way to count keywords in JavaScript?
Cut, paste + execute demo:
var text = "Text to be examined to determine which n words are used the most";
// Find 'em!
var wordRegExp = /\w+(?:'\w{1,2})?/g;
var words = {};
var mat …
0
votes
Is a JavaScript try-catch ignoring an expected occasional error bad practice?
You could always write a helper function to do the checking for you:
function pathEquals(obj1, obj2, path)
{
var properties = path.split(".");
for (var i = 0, l = properties …
5
votes
