Сообщение от Viral
|
а как правильно надо было?
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(document).ready(function(){
$(".text").focusin(function(){
$(this).val("");
});
$(".text").blur(function(){
if (this.value=='') {
this.value="Убить всех человеков";
};
});
});
</script>
</head>
<body>
<input type="text" class="text" value="Убить всех человеков">
</body>
</html>