up vote 0 down vote favorite
share [g+] share [fb]
 $('#item').click(function()  {

        $.ajax({
           url: 'server.php',
           type: 'POST',
           data : {temp : 'aValue'},
           success: function(data) {
           $(data).css('color', 'red').appendTo('#item');
         }    
       });
     });

The problem is here :

       $(data).css('color', 'red').appendTo('#item');

while it does takes the data and works well with the appendTo() the css part is not applicable

link|improve this question

3  
Can you describe what data is? Is it HTML? Just some text? You may need to wrap your text in a <span>; you cannot apply inline styles to a text node. – strager Sep 4 '10 at 8:09
just text ..... yeap works great with the <span> ..many thnx stager ! – t0s Sep 4 '10 at 8:13
sorry...mistake... is this the right way : $(data).wrap('<span></span>') to wrap my text data ? thx – t0s Sep 4 '10 at 8:32
feedback

2 Answers

up vote 1 down vote accepted

Instead of

$(data).css('color', 'red').appendTo('#item');

try

$('<span/>').text(data).css('color', 'red').appendTo('#item');
link|improve this answer
feedback

Because data is a string, not an html element, thus why it's not css'd.

link|improve this answer
sorry, tap was open and it didn't say there's answers, so I answered. – aularon Sep 4 '10 at 8:20
hmm..can u help me how its gonna be an html element ? :/ – t0s Sep 4 '10 at 8:38
Do as @strager suggested below, it works: jsfiddle.net/B3Wdr – aularon Sep 4 '10 at 8:51
feedback

Your Answer

 
or
required, but never shown

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