javascript - Loading contents from parent window to child window -


i working on spring web application, have 1 of jsp page contains table , below table have iframe. problem is, want set tr content inside iframe parent window (i.e containing jsp page). planning thing this,

inside iframe:

<tr id="trid"></tr> 

in parent jsp:

$('#trid').load('some thing need'); 

how so?

try this...

create div inside td id #divid , upload content following code

$('#divid').html('some thing need'); 

Comments

Popular posts from this blog

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -