Team:UCL Academy/js/initjs

From 2013hs.igem.org

(Difference between revisions)
 
Line 6: Line 6:
     $("#injectedcontent").ready(function () {  
     $("#injectedcontent").ready(function () {  
-
alert("ja");
 
         $("a[href^='http://synbiosoc.org/igemhs/']", frames['injectedcontent'].document).each(function()
         $("a[href^='http://synbiosoc.org/igemhs/']", frames['injectedcontent'].document).each(function()
-
   {  
+
   { alert("ja");
 +
 
       this.href = this.href.replace("http://synbiosoc.org/igemhs/",  
       this.href = this.href.replace("http://synbiosoc.org/igemhs/",  

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();
  });
   });

});