Test possible values of font weight - Javascript CSS Style Property

Javascript examples for CSS Style Property:fontWeight

Description

Test possible values of font weight

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<p id="myP">This is a paragraph.</p>

<select onchange="myFunction(this);" size="13">
  <option>normal</option>
  <option>bold</option>
  <option>bolder</option>
  <option>lighter</option>
  <option>100</option>
  <option>200</option>
  <option>300</option>
  <option>400</option>
  <option>500</option>
  <option>600</option>
  <option>700</option>
  <option>800</option>
  <option>900</option>
</select>/*from w ww  .ja  v  a2 s  .c o m*/

<script>
function myFunction(selectTag) {
    var listValue = selectTag.options[selectTag.selectedIndex].text;
    document.getElementById("myP").style.fontWeight = listValue;
}
</script>

</body>
</html>

Related Tutorials