I'm not Eric, but this should allow you to omit the iframe and use whatever style you want (don't know which OS X style is the theme, maybe?):
$.get('form.html', function(response) {
$.modal(response, {
closeHTML:"",
containerCss:{
backgroundColor:"#ffa",
borderColor:"#ffa",
height:350,
padding:0,
width:530
},
overlayClose:true
});
});
source
share