So there is a few core function concepts to JavaScript that should be able to help. First and formost: for dealing with DOM events you will probably want to rely on a library, unless you literally have 0 browser compatibility expectations. I suggest looking into jQUery.
That said, unobtrusive JavaScript (per @Raynos answer) is the right way to bind events in JavaScript and gives you a lot of flexibility. Take the following example:
function setup_events(){
var my_form = document.form[0],
form_name = my_form.name;
my_form.addEventListener("submit", function(event) {
console.log( form_name ); // this is retained through the closure.
});
}
You see you can bind data into event functions by using the concept of a closure, or the context of an outer scope after the outer scope has returned from within an inner scope. Now when you execute setup_events you will bind the submit event with a function who internally has access to the outer variable form_name. This can produce some nasty side effects if you do not understand function scope so look out for code like this:
// XXX : BAD CODE
function setup_events(){
var ul = document.getElementsByTagName('ul')[0], // assumes there is a <ul>
count = 0;
for ( var li in ul.childNodes ) {
li.addEventListener('click', function( event ){
alert( count ++ ); // this will always alert the count of list, not the list position
}
}
}
You can use Immediately Invoked Function Expressions to create the necessary closures to retain the correct state. So to "fix" the above code you would use something like:
// XXX : BETTER CODE
/**
* NOTE: NEVER CREATE FUNCTIONS INSIDE A LOOP
* this example only shows the immediate solution to the above problem
* with regard to function scope and closures.
*/
function setup_events(){
var ul = document.getElementsByTagName('ul')[0], // assumes there is a <ul>
count = 0;
for ( var li in ul.childNodes ) {
li.addEventListener('click', (function( count ){
return function ( event ){
alert( count ); // this will alert the position in the list
};
})(count ++))
}
}