Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

likert scale javascript code

<div class="wrap">
  <h1 class="likert-header">This is a Likert Scale survey</h1>
  <form action="">
    <label class="statement">This HTML Likert scale is easy to use.</label>
    <ul class='likert'>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Strongly agree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Agree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Neutral</label>
      </li>
      <li>
        <input type="radio" name="likert" value="disagree">
        <label>Disagree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Strongly disagree</label>
      </li>
    </ul>
    <label class="statement">It's clear that this is a responsive design.</label>
    <ul class='likert'>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Strongly agree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Agree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Neutral</label>
      </li>
      <li>
        <input type="radio" name="likert" value="disagree">
        <label>Disagree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Strongly disagree</label>
      </li>
    </ul>
    <label class="statement">Codepen.io is an excellent tool for prototyping.</label>
    <ul class='likert'>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Strongly agree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Agree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Neutral</label>
      </li>
      <li>
        <input type="radio" name="likert" value="disagree">
        <label>Disagree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Strongly disagree</label>
      </li>
    </ul>
    <label class="statement">Pete Fecteau is incredibly smart and handsome.</label>
    <ul class='likert'>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Strongly agree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Agree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Neutral</label>
      </li>
      <li>
        <input type="radio" name="likert" value="disagree">
        <label>Disagree</label>
      </li>
      <li>
        <input type="radio" name="likert" value="strong_agree">
        <label>Strongly disagree</label>
      </li>
    </ul>
    <div class="buttons">
      <button class="clear">Clear</button>
      <button class="submit">Submit</button>
    </div>
  </form>
</div>
Comment

PREVIOUS NEXT
Code Example
Javascript :: filter keys from object using ramda 
Javascript :: javascript loop exec function 
Javascript :: destruct e.target.value param 
Javascript :: if you run a script.js with the code, how do you access the value passed to "var" inside script.js ... 
Javascript :: routing vue with meta tag firebase 
Javascript :: check if word has accented or unaccented javascript 
Javascript :: pandas show column with regular expression 
Javascript :: parent folder of file extendscript 
Javascript :: how to make modules structure like lodash 
Javascript :: regular expression arabic and persion 
Javascript :: how to transpose json data 
Javascript :: "when.promise" async await 
Javascript :: react sagas state 
Javascript :: lemon get node from id 
Javascript :: java jsf rendered 
Javascript :: react-native-quick-scroll npm 
Javascript :: typeorm tosql 
Javascript :: disable save image option 
Javascript :: winston exclude routes 
Javascript :: node-emoji list 
Javascript :: react router tutorial medium 
Javascript :: java code that writes code in powerpoint 
Javascript :: death calculator by date of birth make in java 
Javascript :: jasmine compare arrays 
Javascript :: javascript Power of a matrix 
Javascript :: stopper un intervalle javascript 
Javascript :: nodejs createcipheriv invalid key length 
Javascript :: get image center pixels nodejs 
Javascript :: js number 123 to string one two three 
Javascript :: Merger Douplicate array 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =