Skip to content

Instantly share code, notes, and snippets.

@MohcinBN
Created October 17, 2022 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MohcinBN/6f8534abf3d4716d10b665a8b15883b3 to your computer and use it in GitHub Desktop.
Save MohcinBN/6f8534abf3d4716d10b665a8b15883b3 to your computer and use it in GitHub Desktop.
/* html and css
<div class="card">
<h1>
PHP Web Developer
</h1>
<span>
Full Time Job
</span>
</div>
<br>
<br>
Try to enter the infos to get the livepreview.
<br>
<br>
<input oninput="HandleText()" type="text" id="job_title" placeholder="Enter The Job Title"/>
<br>
<br>
<input oninput="HandleText()" type="text" id="type_job" placeholder="Enter The Job Type"/>
<h3>Live Preview</h3>
<div class="card">
<h1 id="output_value">
</h1>
<span id="output_value_2">
</span>
</div>
--------------- css ----------------------
.card {
display: flex;
justify-content: center;
border: 1px solid #ccc;
padding: 1rem;
}
h1 {
font-size: 1rem;
}
span {
font-size: 0.8rem;
}
*/
function HandleText() {
let jobTitle = document.getElementById("job_title");
let jobType = document.getElementById("type_job");
//console.log(jobType.value);
document.getElementById("output_value").innerHTML = jobTitle.value;
document.getElementById("output_value_2").innerHTML = jobType.value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment