pouncer Posted November 28, 2006 Share Posted November 28, 2006 row.innerHTML = values[1] + ' ' + values[2] + ':' + text;why does that not work?' ' Quote Link to comment Share on other sites More sharing options...
obsidian Posted November 28, 2006 Share Posted November 28, 2006 Depending on what you're doing, it does work. Keep in mind, however that you are outputting markup, [b]not[/b] visually what the user will see, so you typically have to use non-breaking spaces instead:[code]row.innerHTML = values[1] + ' ' + values[2];[/code]And so forth Quote Link to comment Share on other sites More sharing options...
pouncer Posted November 28, 2006 Author Share Posted November 28, 2006 thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.