A simple question: how can I use a $jQuery object in an iframe without reinstalling the jQuery source?
$
I tried something simple:
var $ = top.jQuery();
but I'm sure this is a little more than that.
Thank!
I call it using var $ = parent.$, and it works great in our web application.
var $ = parent.$
You should not put brackets at the end.
Just do:
var $ = window.parent.$;
It should do it