Hello my problem is that whenever i load content to an iframe through javascript and jquery it only loads the first time and then i cannot load anything over it. the function I use is this:
function loadContent(elementSelector, sourceURL) {
$(""+elementSelector+"").attr('src', sourceURL );
}
and i call it through
<li><span><a href="javascript:loadContent('#oPanel', 'http://www.google.com');">Google</a></span></li>
Am I doing something wrong? Thanks!