Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<input id="myinput" type="text" value="Primer">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js">
</script>
<script type="text/javascript" src="http://www.bitstorm.org/jquery/color-animation/jquery.animate-colors-min.js"></script>
<script type="text/javascript" >
$("#myinput").focus(function() {
$(this).animate({color: '#fff'}).val('');
});
$("#myinput").blur(function() {
$(this).animate({ color: "#000"}).val('Primerr');
});
</script>
<input id="myinput" type="text" value="Primer">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js">
</script>
<script type="text/javascript" src="jquery.animate-colors-min.js"></script>
<script type="text/javascript" >
$("#myinput").focus(function() {
$(this).animate({color: '#ddd'});
$(this).one('keypress', function(){
$(this).val('');
});
});
$("#myinput").blur(function() {
if ($(this).val().length <= 0) {
$(this).animate({ color: "#000"}).val('Primerr');
}
});
</script>