Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am coding a GM script, and one thing I realised that I'm doing repeatedly is doing the same code over and over again. Specifically, the style property.

function createButton() {
    var a = document.createElement('a');
    a.href = '#';
    a.innerHTML = 'Print Topic';
    a.style.position = 'absolute';
    a.style.right = '3em';
    a.style.top = '6em';
    a.style.fontFamily = 'Arial,Helvetica,sans-serif';
    a.style.fontWeight = 'bold';
    a.style.fontSize = '125%';
    a.style.background = '#777777 none repeat scroll 0 0';
    a.style.color = 'white';
    a.style.padding = '6px 12px';
    document.body.insertBefore(a, document.body.lastChild);
}

As you can see in my sample code, I repeatedly wrote a.style a lot of times. Do you have techniques that you use to avoid this mess? Just for the sake of gracefulness.

THANKS --

Guys, here's the reduced code:

function createButton() {
    var a = document.createElement('a');
    var css = document.createElement('style');
    css.type = 'text/css';
    css.innerHTML = '#prt { position:absolute; right:3em; top: 6em; font-family: Arial,Helvetica,sans-serif; font-weight:bold; font-size:125%; background: #777777 none repeat scroll 0 0; color: white; padding: 6px 12px;}'
    a.href = '#';
    a.innerHTML = 'Print Topic';
    a.id = 'prt';
    document.body.insertBefore(a, document.body.lastChild);
    document.body.appendChild(css);
}

LOL, that certainly looks better

share|improve this question
Is your "reduced code" supposed to be a joke or something? – Outlaw Programmer Apr 3 '09 at 14:31
rymn, you may also define the style attributes in a seperate .css file, then link the file in your page using a link tag. Another alternative is to define the style attributes in a style tag. This would avoid the need to define style attributes in JavaScript code. – AndreiM Apr 3 '09 at 14:42
HTML4.01 doesn't allow style elements in the body, so browsers are free to ignore them; Chrome did this in the past, I don't know about current versions - see stackoverflow.com/questions/524696 – Christoph Apr 3 '09 at 15:14
1  
jQuery works in Grease Monkey, and greatly reduces tedium. – Daniel X Moore Apr 22 '09 at 20:24

6 Answers

up vote 12 down vote accepted

Put the style attributes into CSS classes, then just dynamically swap the classes instead of doing each style attribute explicitly.

share|improve this answer
1  
<- this, dear jesus this – annakata Apr 3 '09 at 14:13

The not-very-good-but-possibly-better-than-the-original answer:

s = a.style;

s.position = "absolute";
...etc...
s.color = "white";
share|improve this answer
AFAIK, some browsers would treat s as a reference, and others as a copy so you might run into cross browser issues here. I could be totally wrong though. – Macha Apr 3 '09 at 14:14
if you were going to go that route, with(a.style) would be better unless you believe crockford's lies – annakata Apr 3 '09 at 14:14
Always in for a good lie. Tell me more! – KooiInc Apr 3 '09 at 14:20
Which browsers do a copy on assignment for JavaScript? What did Crockford say about this case? – Simon Gill Apr 3 '09 at 14:27
Thanks, I tried this before. Unfortunately it didn't work. – rymn Apr 3 '09 at 14:32
show 1 more comment

Try

If you were using jQuery you could write:

$("a").css({position: "absolute", right: "3em", top: "6em"}) // etc.
share|improve this answer
Thanks, I'm coding in Greasemonkey and want to know more about bare metal Javascript. =D – rymn Apr 3 '09 at 14:32

jQuery makes things shorter via a magic function $() that gives back a wrapper of your dom element.

The wrapper gives you access to all the css property, and pretty much all its methods (ie the setters are giving back "this") including the CSS setters.

It will be clearer with an example...

$("<a href='toto/'></a>")
    .css("position", "absolute");
    .css("right", "3em")
    .appendTo($(containerid));
share|improve this answer
Yea, jQuery is great. I'm trying the bare metal Javascript now. I kind of want to know the very detail of Javascript. – rymn Apr 3 '09 at 14:30

Javascript has a with statement...

with a.style {
  position = 'absolute';
  right = '3em';
}

And you can split your repeated functionality out as a function and pass in your element as a parameter...

function setStyle(elem) {
  with elem.style {
    position = 'absolute';
    right = '3em';
  }

  return elem
}

//Invoke like this: elem = setStyle(elem)
share|improve this answer
Does this work crossbrowser? – Macha Apr 4 '09 at 20:38

Elaborating on the most highly voted answer above. Just put all of your css information into a css class. Then just assigned the class attribute.

<style type='text/css'>
 a .prt { 
 position:absolute; 
 right:3em; 
 top: 6em; 
 font-family: Arial,Helvetica,sans-serif; 
 font-weight:bold; 
 font-size:125%;
 background: #777777 none repeat scroll 0 0;
 color: white; padding: 6px 12px;
}
</style>
<script>
function createButton() {    
 var a = document.createElement('a');
 a.class= 'prt';   
 document.body.insertBefore(a, document.body.lastChild);
}
</script>
share|improve this answer
that should read ` a.className= 'prt'; ` - class is a reserved word and might lead to problems when used as an unquoted property name – Christoph Apr 3 '09 at 21:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.