JSFiddle - React, Tailwind, and code Playground
by icntfan
HTML
<!DOCTYPE html>
<html>
<head>
<style>
textarea { height:25px; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<form>
<input type="button" value="Giriş Düğmesi"/>
<input type="checkbox" />
<input type="file" />
<input type="hidden" />
<input type="image" />
<input type="password" />
<input type="radio" name="asdf" />
<input type="radio" name="asdf" />
<input type="reset" />
<input type="submit" />
<input type="text" />
<select><option>Seçenek<option/></select>
<textarea></textarea>
<button>Buton</button>
</form>
<div>
</div>
<script>
var input = $("form input:submit").wrap('<span></span>').parent().css({background:"yellow", border:"3px red solid"});
$("div").text("Şu kadar bulundu: " + input.length + ".")
.css("color", "red");
$("form").submit(function () { return false; });
</script>
</body>
</html>