No matter what you do, if it's not on your domain, you would need server side code to do that. That's because you cannot import cross domain with AJAX. You could access the code in the iframe and do things with that, but again only if it were on your domain.
Regardless of where it is though, you could just take its HTML code and place that on your page or on an external page on your domain:
HTML Code:
<div style="background-image:url(http://review.bovag.nl/images/kvbovagwidgetbg.jpg);height:79px;width:300px;">
<div style="position:relative;left:60px;top:27px;width:230px;font-family:\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,Arial;font-size:11px;line-height:1.3em;color:#000">
Klanten beoordelen ons met een <strong>8,1</strong>.<br />95% beveelt ons aan.
</div>
<a href="http://www.bovag.nl/index.php?pageID=59&catalog=membercars&externalID=00968600" target="_blank" style="line-height:1.3em;position:relative;top:29px;left:60px;font-family:\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,Arial;font-size:10px;background:url(http://review.bovag.nl/images/bg_submit.png) no-repeat scroll right top transparent;color:#FFFFFF;display:inline-block;height:21px;line-height:20px;overflow:hidden;margin-right:3px;text-decoration:none;width:130px;"><span style="margin-left:5px">Bekijk beoordelingen</span></a>
<a href="http://review.bovag.nl/enquete/00968600/" target="_blank" style="line-height:1.3em;position:relative;top:29px;left:60px;font-family:\'Lucida Grande\',\'Lucida Sans Unicode\',\'Lucida Sans\',Tahoma,Arial;font-size:10px;background:url(http://review.bovag.nl/images/bg_submit.png) no-repeat scroll right top transparent;color:#FFFFFF;display:inline-block;height:21px;line-height:20px;overflow:hidden;text-decoration:none;width:105px;"><span style="margin-left:5px">Beoordeel zelf</span></a>
</div>
Is it on your domain?
If so, you might be able to use a more complex AJAX call. If it's not on your domain, just use the above HTML instead. That will also work even if it is on your domain.
And what style did you have in mind? If all you want is a border and/or background, you could do that with an iframe. If you want to change the style of the tags in its HTML, it would probably be easiest to just use the HTML code.
Bookmarks