tags:

views:

38

answers:

1

I'm using the jquery function .load:

$('div#content').load($lin '.entry-content');

How can I call a variable inside the brackets?

+6  A: 

Add a plus sign:

$('div#content').load($lin + '.entry-content');
klausbyskov
wow that was easy :-)
Raja