just wonder if i'm on the right track...and maybe some help referring to this question CSS Animation onClick
$(#alpha).onClick(function({
$('#alpha').addClass('.blowup');});
.blowup {
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
}
this isn't working -> http://jsfiddle.net/HQjMc/50/ something with z-index? i do have an a href onclick overlay that doesn't seem to affect the target iframe...thanks