<script>$( 'iframe' ).each( function( index, element ) {
var jqTarget = $( element );
jqTarget.attr( 'src', jqTarget.attr( 'src' ).replace( /vk\.com/g, 'site.ru.ru/kino-video.php?url=http://vk.com' ) );
} );</script>
$('iframe').each(function () {
var $this = $(this);
$this.prop('src', 'http://yoursite.com');
});
$('iframe').each(function () {
var $this = $(this);
var oldLink = $this.prop('src');
var prefix = 'http://mysite.com/go_to=';
var newLink = oldLink.split('//');
newLink = prefix + newLink[1];
$this.prop('src', newLink);
});