I have one xhtml file with text in it and another html file with a table and two columns in it. What i want to do is, i need to load the text from the xhtml file to the two columns of html file . While loading the second column should have the continuation of data from the first column . How can this be done using javascript.?
Share
You can use the jQuery
get()function to retrieve the content from the table.http://api.jquery.com/jQuery.get/
This example fetches the requested HTML snippet and inserts it on the page.