Answers for "kak ispolzovat html checkbox"

0

kak ispolzovat html checkbox

<input type="checkbox" onclick="checkFluency()"  id="fluency" checked />
Posted by: Guest on July-07-2020
0

kak ispolzovat html checkbox

function checkFluency()
{
  var checkbox=document.getElementById('fluency');
  if(checkbox.checked!=true)
  {
    alert("you need to be fluent in English to apply for the job");
  }
}
Posted by: Guest on July-07-2020

Browse Popular Code Answers by Language