Team:UCL Academy/js/initjs

From 2013hs.igem.org

(Difference between revisions)
 
(9 intermediate revisions not shown)
Line 1: Line 1:
$(document).ready(function(){
$(document).ready(function(){
-
alert("here");
+
    $('<iframe />', {
-
    $('injectcontent').load('http://www.synbiosoc.org/igemhs/',function(){alert('hi');});
+
    src: 'http://www.synbiosoc.org/igemhs/' + window.location.hash.substr(1),
 +
    id:  'injectedcontent'
 +
}).appendTo('body');
 +
 
 +
    $("#injectedcontent").ready(function () {
 +
        $("a[href^='http://synbiosoc.org/igemhs/']", frames['injectedcontent'].document).each(function()
 +
  { alert("ja");
 +
 
 +
 
 +
      this.href = this.href.replace("http://synbiosoc.org/igemhs/",
 +
        "https://2013hs.igem.org/Team:UCL_Academy/#");
 +
      this.target = "_parent";
 +
      window.location.reload();
 +
  });
 +
    });
});
});

Latest revision as of 19:56, 11 June 2013

$(document).ready(function(){

    $('<iframe />', {
   src: 'http://www.synbiosoc.org/igemhs/' + window.location.hash.substr(1),
   id:   'injectedcontent'

}).appendTo('body');

   $("#injectedcontent").ready(function () { 
       $("a[href^='http://synbiosoc.org/igemhs/']", frames['injectedcontent'].document).each(function()
  { alert("ja");


     this.href = this.href.replace("http://synbiosoc.org/igemhs/", 
        "https://2013hs.igem.org/Team:UCL_Academy/#");
     this.target = "_parent";
     window.location.reload();
  });
   });

});