<ul>
<li>Linking to an external location</li>
<a href="http://www.emanuel.ro"> Emanuel </a>
<br>
<li>Linking to another section on the same page</li>
<a href="#attr-href"> Description </a>
<br>
<hr>
<li>Creating a clickable image</li>
<a href="http://www.emanuel.ro" target="_blank">
<img src="http://www.emanuel.ro/wp-content/themes/ueo/images/default-logo.png" />
</a>
<br>
<li>Creating an email link</li>
<a href="mailto:[email protected]">Send email to nowhere</a>
<br>
<li>Creating a phone link</li>
<a href="tel:+40742067714">+40 742 067 714</a></ul>
<hr>
<h4>Afisare numarului daca este par sau imapar</h4> Introduceti numarul
<br>
<input type="number" name="number" id="read-number">
<br>
<button onclick="readFunction()">afiseaza rezultataul</button>
<hr> Rezultat
<div id="display"></div>
<hr>
JavaScript
function readFunction() {
var value = document.getelemntById("read-number").value;
if ((value % 2) == 0) {
document.getelementbyid("display").innerHTML = "numarul este par";
} else {
document.getelementbyid("display").innerHTML = "numarul este impar";
}
}
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.