Life has to be something better than what we can see around us. It must be a kind of utopia that’s just beyond that hill, or just a little bit after the horizon. Whatever the case, it has to be there. I don’t see any other way on how this would work. I think it’s up to us to make life better than it is. Does that make sense? I sure hope it does to someone who’s reading this. If it does then I’ve done something right. If it doesn’t? Well that’s another story for another time.
So here's a simple problem I had earlier this week while working on a personal project.
I had a webpage in an iframe that spanwed a window. The new window would either add a record to the database or update an existing record. The page that opened the window would then reflect the updated data.
Well for a while I tried various different things. Then I finally came upon the correct way to do it:
window.opener.location.reload(true);
So after I do my updates or additions, I run that code and it refreshes the data list and shows the new information.
Easy. As. Pie.
Comments
Post a Comment