Created
January 26, 2012 16:53
-
-
Save garyt/1683749 to your computer and use it in GitHub Desktop.
UCB evalsys likert scale markup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="item scale"> | |
<div class="compact"> | |
<h5 class="title"> | |
<span class="number">1</span> | |
<span class="delineator"> | |
<span class="paren">)</span> | |
<span class="dot">.</span> | |
</span> | |
<span class="required">*</span> | |
<span class="label">Question text.</span> | |
</h5> | |
<div class="content"> | |
<div class="itemScalePanel"> | |
<ol> | |
<li> | |
<label for="scale1" class="prepend">Label1</label> | |
<input type="radio" name="scale1" value="0"/> | |
<label for="scale1">Label1</label> | |
</li> | |
<li> | |
<input type="radio" name="scale2" value="1"/> | |
<label for="scale1">Label2</label> | |
</li> | |
<li> | |
<input type="radio" name="scale3" value="2"/> | |
<label for="scale1">Label3</label> | |
</li> | |
<li> | |
<input type="radio" name="scale4" value="3"/> | |
<label for="scale1">Label4</label> | |
</li> | |
<li> | |
<input type="radio" name="scale5" value="4"/> | |
<label for="scale1">Label5</label> | |
</li> | |
<li> | |
<input type="radio" name="scale6" value="5"/> | |
<label for="scale1">Label6</label> | |
</li> | |
<li> | |
<input type="radio" name="scale7" value="6"/> | |
<label for="scale1">Label7</label> | |
</li> | |
</ol> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment