Drag list from jQuery iframe

I have a list containing links to open an iframe with jQuery and thickbox. This new window allows the user to edit field information using an iframe. Refresh button -

<input type="submit" name="bUpdateDate" value="Update" 
onclick="self.parent.location.reload(true);self.parent.tb_remove();"
id="bUpdateDate" />

      

This update works well in IE, but Firefox and Chrome won't double check the list. I've tried no cache meta tags, and HttpCacheability.NoCache and IIS content header, but nothing seems to force Firefox to update. How can I get my re-binding list from the child iframe?

0


a source to share


3 answers


The solution that works for me is found here: http://www.zdima.net/blog/archives/398



0


a source


jQuery 1.3.3 will have better iFrame binding support when released http://brandonaaron.net/blog/2009/05/14/jquery-edge-better-support-for-other-windows-and-documents



You may be able to get the last bit and do better.

0


a source


As another option,

top.location.reload(true)

      

Job?

0


a source







All Articles