Baxterstockman
Neues Mitglied
Hi, ich hab mal ne FRage ich bin neu un versuche mich gerade an jquery
Ich habe folgenden Code und der funktioniert auch (Bei Textaenderung wird automatisch der neue text angezeigt)
Problem ist allerdings der neue text wird direkt neben dem input angezeigt. Was wenn ich den aber drunter oder wo ganz anders haben will. Weiss jemand wie das funktioniert?
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<div>
<p></p>
<input id="namefield" value="Name" onfocus="if(value=='Name') value = ''"/>
<span></span>
</div>
<p></p>
<!--namefield-->
<script>$(function() {
$('#namefield').bind('input', function() {
$(this).next().stop(true, true).fadeIn(0).html($(this).val());
});
});
</script>
</body>
</html>
Danke im Voraus!
Ich habe folgenden Code und der funktioniert auch (Bei Textaenderung wird automatisch der neue text angezeigt)
Problem ist allerdings der neue text wird direkt neben dem input angezeigt. Was wenn ich den aber drunter oder wo ganz anders haben will. Weiss jemand wie das funktioniert?
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<div>
<p></p>
<input id="namefield" value="Name" onfocus="if(value=='Name') value = ''"/>
<span></span>
</div>
<p></p>
<!--namefield-->
<script>$(function() {
$('#namefield').bind('input', function() {
$(this).next().stop(true, true).fadeIn(0).html($(this).val());
});
});
</script>
</body>
</html>
Danke im Voraus!