Jump to content

jQuery appendTo not appearing in View Source


jcanker

Recommended Posts

I'm creating some <div>s based on returned data.  The text shows up where it's supposed to, but if I select "View Source" in IE8 (haven't tried on FF, Chrome, etc yet) The div's don't appear.  What gives?  Why isn't the view source showing the updated DOM doc?

  	$("#centerColumn").empty();
  	var customerOutput = '<div id="customerInfo"><div id="busname">Customer Name: '+$(this).find("busname").text()+'</div></div>';
  	customerOutput +='<div id="buscode">Buscode: '+$(this).find("buscode").text()+'</div>';
$(customerOutput).appendTo("#centerColumn");
  	

Link to comment
Share on other sites

That is how Javascript works (and is not jQuery specific). It doesn't actually manipulate the html, but the DOM stored within the browser itself.

 

Get yourself Firebug and you will be able to see what the code would look like after the DOM has been manipulated.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.