In my JSP file there is a custom tag <table:page page="${page}"></table:page>
.
I want to update value of ${page} by ajax.
Now ajax return a successful value.
The returned value seems like <div><ul><li></li></ul><div>
,
But I have an idea that how can I get this custom tag and set html to it ?
In tag file it is like this <%@ attribute name="page" type="com.common.Page" required="true"%>
I tried many ways, but it doesn`t work.
Any suggestion is welcome.