Team:LMU-Munich/Primer Design/Design Primers
From 2011.igem.org
(Difference between revisions)
m (mathias:) |
(mathias: fixed mixup with coding/non-coding) |
||
Line 63: | Line 63: | ||
<div> | <div> | ||
<label style="clear: none;"> | <label style="clear: none;"> | ||
- | <input type="radio" name="cmode" value="coding | + | <input type="radio" name="cmode" value="coding" id="radio-coding" />Coding |
</label> | </label> | ||
<label style="clear: none;"> | <label style="clear: none;"> | ||
- | <input type="radio" name="cmode" value="noncoding" id="radio-noncoding" />Non-Coding | + | <input type="radio" name="cmode" value="noncoding" checked="checked" id="radio-noncoding" />Non-Coding |
</label> | </label> | ||
</div> | </div> | ||
Line 129: | Line 129: | ||
--> | --> | ||
<div id="noncoding" class="leftbox" style="width: 630px"> | <div id="noncoding" class="leftbox" style="width: 630px"> | ||
- | <p><label><h2> | + | <p><label><h2>Coding Sequence</h2> |
<textarea name="seq" cols="40" rows="6" style="width: 98%; margin: 0; padding: 0;"></textarea></label></p> | <textarea name="seq" cols="40" rows="6" style="width: 98%; margin: 0; padding: 0;"></textarea></label></p> | ||
<p><label>You can also upload a FASTA file: <input type="file" name="seq-file" /></label></p> | <p><label>You can also upload a FASTA file: <input type="file" name="seq-file" /></label></p> | ||
Line 145: | Line 145: | ||
document.getElementById('na').disabled = true; | document.getElementById('na').disabled = true; | ||
- | document.getElementById('radio- | + | document.getElementById('radio-noncoding').onclick = function() { |
document.getElementById('coding1').style.display = "block"; | document.getElementById('coding1').style.display = "block"; | ||
document.getElementById('coding2').style.display = "block"; | document.getElementById('coding2').style.display = "block"; | ||
document.getElementById('noncoding').style.display = "none"; | document.getElementById('noncoding').style.display = "none"; | ||
} | } | ||
- | document.getElementById('radio- | + | document.getElementById('radio-coding').onclick = function() { |
document.getElementById('noncoding').style.display = "block"; | document.getElementById('noncoding').style.display = "block"; | ||
document.getElementById('coding1').style.display = "none"; | document.getElementById('coding1').style.display = "none"; |
Revision as of 20:11, 16 September 2011