My js file looks like this:
$('.button').live("click",function () {
$('.tresc').attr("src", "http://www.google.com/");
});
and html:
<a href="javascript:void(0)" class="button">Odnośnik 01</a>
I want to change iframe with class tresc src to for ex. "http://google.com", by clicking a with class button using jquery. My solution doesn't work anyway. Any advices?