I am trying to load a template to a given DIV in my main .html file. I am trying to use jquery:
$('#Selected').load("template.html",{REQUIREDID:PARENTID})
The template loads correctly but I am unable to pass the variable and use it in the template. For example <div>"requiredid"</div>
How can I read the parameter that I am passing when I load the template
Thanks.