Load HTML into Div

Hi Chaps…

Im rather rubbish in js, so please bare with me :slight_smile:

Very simply i have one div with links, and another div for content.
The links carry dynamically ID’s to populate the html to be loaded into the content div

Ive found a old tut here but its seems rather bloated for something so simple. Ive looked at Ajax, and found tuts on how to load content within its own div, but not referring to another and not using dynamically generated links.

The html to be loaded into the content div is form based (and in the same domain), which upon processing, will go to another page…based on the link above for the old script, the second page (after form processing) went to a complete new page, rather than loading into the content div only…sorry im rambling…

Could someone point me in the right direction for a step by step tut…or a link to a solution that i could adapt

thanks in advance

Here’s how you do it with jquery:

$.ajax({
   					type: "POST",
   					url: "/application/view/content/portfolio_pop_up.php?portfolio="+popout_id,
   					success: function(msg){
     					$('#lightbox_pop_out').append(msg);
     					
   					}
 				});

In this snippet an id is passed to a backside script that returns the information.