Using jquery on a child page
if i load ('mypage.htm') in <div id="placeMyContentHere">
I need to put jQuery in "mypage.htm". I use a light box ike on my child page. If I add jquery.js and colorbox.js to mypage.htm, this will work. Although I can not help thinking that there is a better way.
This is how I usually call colorbox
$(document).ready(function() {
$("a[rel='example1']").colorbox();
+3