Question

I would like to use jQuery's load function

I can write : $('#somediv').load('somefile.html #aSpecificDivinThatPage');

Now I would like to have a variable as the source div in the html page, how do i write that out ?

Was it helpful?

Solution

You can just use normal string concatentation:

var div = '#aSpecificDivinThatPage';
$('#somediv').load('somefile.html ' + div);

OTHER TIPS

You mean you want to copy the html from the source div and put it into another div?

$("#destinationDiv").html($("#sourceDiv").html());
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top