JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://dl.dropbox.com/u/5774490/facebox.css">
<script src="http://dl.dropbox.com/u/5774490/facebox.js"></script>
<a href="#" class = "facebox"> Click Me </a>
JavaScript
$('.facebox').live('click', function() {
var height, width;
width = 600;
height = 400;
$.facebox({
iframe: 'http://google.com',
rev: "iframe|" + height + "|" + width
});
return false;
});