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

What's wrong with my jquery script?

Here's the script

function debug(message){
  $("body").append("<div id=\"debug\">"+ $(message) +"</div>"):
}
debug("show this debug message in the div");

Here's the resulting html I get

<div id="debug">[object Object]</div>

The html that I expect is this

<div id="debug">show this debug message in the div</div>
share|improve this question

2 Answers

up vote 3 down vote accepted

You are pasting an object in, $(message), instead of the variable message. Try this:

    function debug(message){
      $("body").append("<div id=\"debug\">"+ message +"</div>"):
    }
share|improve this answer
thanks jmort. that works. – Joshua Robison Jan 10 '11 at 5:25

You're converting a string to a jquery object using $(message). basically, you're making message no longer a string but a selector to jquery. Try the following:

function debug(message){
  $('body').append($('<div>').attr('id','debug').text(message));
}

note I use .attr and .text as this is a tad bid safer when appending information.

EDIT Also, another thing to note: ID is a unique identifier in HTML. for this reason, if you're calling this function multiple times, you may want to either assign a perm. "div" to alter the .text() value of, or consider using a debug [CSS] class for the div.

share|improve this answer
Good thing I refreshed prior to posting.. This was exactly what I was going to say. +1 – Demian Brecht Jan 10 '11 at 5:14
& @Josh - This approach is a lot cleaner. I don't really like putting HTML in my JavaScript. +1. – jmort253 Jan 10 '11 at 5:21
thanks brad. riddle solved. – Joshua Robison Jan 10 '11 at 5:25
@Josh: No problem, glad to help. – Brad Christie Jan 10 '11 at 5:29
@Josh: Don't forget to mark answers that help you as "Accepted". This gives credit to the posters, but also makes this question a great resource to future visitors with the same problem. (I notice you have 5 other questions, 4 with answers--all of which have no accepted answers). – Brad Christie Jan 11 '11 at 1:58

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.