I have a page ( parent window ) that opens a pop-up window ( daughter ) with JavaScript , and by clicking a button from the window daughter, it closes, and I need to update a div
of the parent window.
I tried with parent.location.reload
but I reload the whole page and I do not want that, I want to update only a certain element of the screen.
I've also tried doing document.getElementById.reload
but it does not work either. Is there any way to do this with JavaScript ?
The value to be updated is updated in Java by a action
that the button has. All I need is for that part of the page to be updated to show that value.