Style Kills JS

<script type=“text/javascript”>
document.write(“<div id=\“widgetwrapper\”>”);
document.write(“<a href=\”\/\“><span class=\“heading1\”>Featured <\/span><span class=\“heading2\”>Jobs<\/span><\/a><br \/>”);
document.write(“<!-- Add Partner’s RSS Feed Here! –>”);
document.write(“<SCRIPT language=javascript type=text\/javascript charset=utf-8 src=\“http:\/\/www.****.com\/distrib\/jobs\/javascript.cfm?code=VzlcBScBtx4H88Aa1KtXiEa9jqW5RDdk\”><\/SCRIPT>”);
document.write(“<!-- End RSS Feed –>”);
document.write(“<a href=\”\/\" class=\“post\”>Post a Job<\/a>“);
document.write(”<\/div>");

document.getElementById(widgetwrapper).style.width = 100%;
</script>

Is there a question in here somewhere? :shifty:

Looks like a widget to me, but if I had to hazard a guess at a bug, I would say that:

document.getElementById(widgetwrapper).style.width = 100%;

should be:

document.getElementById(“widgetwrapper”).style.width = 100%;

?

Thank you

yw :slight_smile: