JavaStripped
Programmer
I was playing with JavaScript for getting rid of the focus outline on activated buttons/links/etc. I think this is pretty much how everybody does it (seems like the easiest way, anyway):
onMouseUp = "this.blur()"
But inserting this into every single individual button and link in my site seems unnecessarily laborious...
THIS is why we need to be able to include JavaScript in CSS documents! We use JavaScript (often) to control formatting (as in the above example); formatting is why we have CSS; therefore, we need to be able to use JavaScript in style sheets (unless CSS provides us with another way to do this).
JavaStripped
"I did *not* escape. They gave me a day pass."
onMouseUp = "this.blur()"
But inserting this into every single individual button and link in my site seems unnecessarily laborious...
THIS is why we need to be able to include JavaScript in CSS documents! We use JavaScript (often) to control formatting (as in the above example); formatting is why we have CSS; therefore, we need to be able to use JavaScript in style sheets (unless CSS provides us with another way to do this).
JavaStripped
"I did *not* escape. They gave me a day pass."