Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm quite new with JQ thing, so I do not understand why .html works, and .before does not but I hope someone will help. I'm using it within some old ASP project, so this code is within .ascx file.

I use this line:

$('#UploadSummaryFile1').html($(this).val()+'<span id="DeleteCrossFile1" onclick="DeleteElement(1);"><img src="Images/DeleteCross.png" alt="Delete"></span>');

And it works fine, I get image after the "UploadSummaryFile1" container. So I have on the screen |FilenameX|, and I need to have |X Filename|.

I tried changing .html to .before but apparently that's not the way how to use it.

share|improve this question
2  
have you looked at .append() or .prepend() ? .html() will replace all the content in the target. – Adam Dec 28 '12 at 8:46
Nope, just .before and .insertBefore... will check, tnx. – Balkyto Dec 28 '12 at 8:50

1 Answer

up vote 2 down vote accepted

Try this:

$('#UploadSummaryFile1').html(
    '<span id="DeleteCrossFile1" onclick="DeleteElement(1);"><img src="Images/DeleteCross.png" alt="Delete"></span>'
    + $(this).val()
);

So, basically, switch $(this).val() and the rest of the html around.

Or better yet:

$('#UploadSummaryFile1').prepend('<span id="DeleteCrossFile1" onclick="DeleteElement(1);"><img src="Images/DeleteCross.png" alt="Delete"></span>');
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.