I cannot figure out how to grab a PHP variable and use it as a jQuery variable.
So, I've got for example this variable:
$content = "bla bla bla";
And it is inside a DIV:
div id='contentWrapper'
$content = "bla bla bla";
/div
I know how to grab the ID, class and content (text) of the DIV contentWrapper, but how do I grab $content? I hope I am being clear enough :)
var myVar='<?php echo $content;?>';?