I have a iframe and i used the jquery .data() function to save some element from the iframe.
i attached them to the body like this $('body').data('clicksData', myClicksData);
Now i need to access that information from out of the iframe, i tried just doing this var allData = $('body').data('clicksData')[0]; but it didnt work.
any ideas how to do this?
Thank you
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Use this : assign some id to your iframe like this :
and use this jquery code to access that iframe
|
|||||||||||
|