Reload a nested page

Is there any way that we can reload only the nested page within the entire page? :slight_smile:


You could use Ajax for this. But depending on what content is in that nested page, you might need to rework it. E.g. javascript in that page.


I want to reload the nested page(asset lister) after i closed the pop up window.. Do you have any idea how to do this?

Pop-up window?

You could add divs around the nested content, then trigger an ajax event that would reload the nested contents URL back inside that div.

Look into jQuery .load, there are examples on how to do something similar.

[quote]Pop-up window?


You could add divs around the nested content, then trigger an ajax event that would reload the nested contents URL back inside that div.



Look into jQuery .load, there are examples on how to do something similar.[/quote]



Thanks! Got it with ajax script…


Good. BTW, I always make sure to have a blank design that I call for ajax, so that it won't pull in all my headers, footers, etc. when calling a URL.