JSFiddle - React, Tailwind, and code Playground
by icntfan
HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<script>
$(function() {
$( document ).tooltip();
});
</script>
<style>
label {
display: inline-block;
width: 5em;
}
</style>
</head>
<body>
<p><a href="#" title="Bu bir ipucudur">Tooltip'ler</a> herhangi bir elemente eklenebilir, Elementin üzerine geldiğinizde title özelliğini ipucu olarak ekrana yansıtır.</p>
<p><label for="age">Yaşınız:</label><input id="age" title="Yaşınızı bu alana giriniz" /></p>
</body>
</html>