Oh boy, more drama. I don’t understand it. I don’t get it. It’s life, yes, but it doesn’t have to be this way! I sure hope we don’t get evicted because someone else decided that we were doing something we weren’t doing at all! Seriously, what the heck! I don’t get it. I wish life wasn’t this way, but what can I do about it? I don’t know. It would be nice to be able to figure out what’s going on in life right now, I don’t have an exact clue what’s happening but I want to know! Is that too much to ask? Yeah, I didn’t think so. So many wrong things going on and I simply don’t know how to go about addressing them. It would be nice to be able to figure something out. Why are so many people against us? What did we do to deserve this? Man, I wish I knew!
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