<iframe src="https://google.ru" num=1></iframe>
<iframe src="google" num=2></iframe>
<iframe src="http://javascript.ru"></iframe>
<iframe src="https://google.com" num=3></iframe>
<div><iframe src="https://google.net" num=4></iframe></div>
<iframe src="HTTPS://GOOGLE.INFO" num=5></iframe>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$('iframe[src*="google"]').each(function() {
var div = $('<div/>', {'class': 'Bla bla', html: 'Содержимое дива'});
$(this).replaceWith(div);
});
</script>