vote up 0 vote down star

I am trying to execute this but cant see any result:

<script>
function init() {
document.getElementById('welcome').innerHTML = "<font color=white>Logged As:"+ param + "</font>";
}
window.onload = init; 
</script>

    <body>
           ...........
    <div class="span-24 bottom_header" id="welcome"></div>
           ...........
    </body>

what is wrong here..........

flag

51% accept rate
What browser? is window.onload being called? Try putting an alert('hi') in your init() ? – Chad Grant May 2 at 11:36
1  
Where is the param variable defined? – Perspx May 2 at 11:39
4  
The only reason this doesn't work is because param is undefined. (Like Perspx suggested). No idea why you've accepted the answer you have below - doesn't solve your problem... – J-P May 2 at 12:56

6 Answers

vote up 5 vote down check

This self-contained example works perfectly for me in Firefox and IE7:

<html><head><script>
function init() {
    document.getElementById('welcome').innerHTML = "<font color=white>Logged As: TEST</font>";
}
window.onload = init; 
</script></head>
<body>
<div class="span-24 bottom_header" id="welcome"></div>
</body></html>

You are adding white-on-white text, remember...

link|flag
2  
In your code you removed param therefore it worked. As JimmyP said the problem is because param is undefined. – Drahcir May 2 at 13:52
vote up 3 vote down

Have you considered using a framework such as jquery? The above code would then become...

$('#welcome').html("<font color='white'>Logged As: TEST</font>");
link|flag
...using a framework for such a simple task? no, no... – Andreas Grech May 2 at 11:40
Pretty harsh downvote, the example code is almost always a snippet. – Chad Grant May 2 at 11:42
You marked me down for such a suggestion? I'm assuming that isn't the only thing he will be wanting to do with JS so I was simply making a suggestion he uses a framework to simplify things. – Ian Roke May 2 at 11:43
All I'm saying is using jQuery won't solve his problem...and will most probably even create more problems for him – Andreas Grech May 2 at 11:45
1  
Not only is jQuery not required for this simple task but the code posted won't work. I think you meant $('.welcome').text('...'); – J-P May 2 at 12:53
show 9 more comments
vote up 8 vote down

Maybe because your background is white and you are setting white color to your font: <font color=white>. Try with black :-)

link|flag
vote up 3 vote down

Two things:

1) Make sure you don't have more than one element on the page with the ID "welcome"

2) Off topic, but revise your need to use the "font" tag. It's heinously deprecated at this point in time. You should be using <span style="color:white;">Logged as: TEST</span>

link|flag
vote up 3 vote down

Perspx and JimmyP already mentioned this in the Question's comments:

Are you sure you the param variable exists somewhere before executing your function?

link|flag
vote up 3 vote down

Actually, the correct jQuery translation would be:

$('#welcome').html("<font color='white'>Logged As: TEST</font>");

Three cheers for my lack of "reputation"!

link|flag
haha you're actually right mate. hip hip hooray ;-) ! – Andreas Grech May 3 at 11:27
Should I delete this now? – ken May 3 at 12:04

Your Answer

Get an OpenID
or

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