There's a question that looks like this one here:
Create my own classList object when the browser does not implement it itself
The problem is that the answer works in some browsers but does not work in IE7 and in flock (at least).
So I'd like to have an alternative that works with these browsers.
What I want is simple but I believe it's not simple to implement.
I want to be able to apply this code to any browser build from the time that IE7 or FF 3.0 was build:
var select = document.createElement('select');
select.classList.add('guestSelect');
How can I accomplish that?
Note that I don't want to use any frameworks or any libraries. I want to be the one to write the code!
I'd like to do it this way specially because I want to learn how to accomplish these kinds of things.