[jQuery] IE issues accessing frames
i have a frame with a name and id of 'recordframe' with a div with an
id of 'content-text' and which i can access as
$('#content-text', frames['recordframe'].document)
or
$('#content-text', top.recordframe.document)
then i have a link which i prepend to recordframe's context-text div
which i can do as
var recordLink = $('<a class='record'></a>')
$('#content-text', frames['recordframe'].document).prepend(recordLink)
or
$('#content-text', top.recordframe.document).prepend(recordLink)
but this functions in for MAC/PC Firefox and Safari but not IE! what
could be the issue? also how can i log the text/html of recordLink.
when i use firebug console.log(recordLink.html() or .text() or .val())
it returns an empty string. what is the correct syntax for accessing
the html in the recordLink element variable? thanks!