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

I need your help. I have this javascript function to write a message to the logs. The logs text color is always blue. Anyone who can solve this issue? Below is my javascript code.

Thank you for your help.

function logMessage(taskName,action,from,to) 
{
    var $logsDiv = jQuery("#logs");
    var message = '';
    if(action == "receive")
    {
       message = taskName +" was removed from '"+ from +"' and was added to '"+ to +"'<br/>";
       jQuery("#logs").css("color","blue");
       $logsDiv.append(message);
    }
    else
    {
      message = taskName +" was removed from '"+ from +"' and was added to '"+ to +"'<br/>";
      jQuery("#logs").css("color","green");
      $logsDiv.append(message);
    }
 }
share|improve this question

2 Answers

up vote 2 down vote accepted

Try this code

if(action == "receive")
{
   message = taskName +" was removed from '"+ from +"' and was added to '"+ to +"'<br/>";
   jQuery("<span>").css("color","blue").html(message).appendTo("#logs");
}
else
{
  message = taskName +" was removed from '"+ from +"' and was added to '"+ to +"'<br/>";
  jQuery("<span>").css("color","green").html(message).appendTo("#logs");
}
share|improve this answer
1  
Use <span/> instead of <span> for IE compatibility. – rid Oct 12 '11 at 17:42
it is now working. this is my div where the logs should be display`<div id="logs"></div>`. Should I put <span></span> inside? – justin Oct 12 '11 at 17:50
Radu and Nittis, Now its working. I just mislook the remove function. Thank you so much for your help. – justin Oct 12 '11 at 17:53
@justin If any of these answers correctly answered your question, you might want to accept it – Bart Nov 12 '11 at 15:56

The problem is that, each time you add a new message, you also color your entire #logs instead of just the message. So instead of:

jQuery("#logs").css("color","blue");

use something like:

message = jQuery("<div/>").css("color","blue").append(message);
share|improve this answer

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.