In javascript how to use jsp tag value
i want to change td value while clicking the options.In the td contains jsp page.while clicking the options i want to load particular jsp within in the td.i change the td value using innerHTML by assigning value this format <jsp:include page="..."/>.It's gives some error .
JspTranslate:Attribute has no value
code:
function rightPageload(strPage) {
pageval='<jsp:include page="/jsp/library/"'+strPage+'"/>'
document.getElementById("d1").innerHTML=pageval;
}