Сообщение от SkaN
|
Не получается вернуть false
|
Смотря как делаешь...
Сообщение от SkaN
|
хочу, чтобы по сабмиту из формы брались все значения и вставлялись перед формой
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css">
</style>
<script type="text/javascript">
$(document).ready(function (){
$('#frm :submit').click(function (){
$('#frm :text').each(function (){
$('#container').append('<p>'+$(this).val()+'</p>')
})
return false
})
})
</script>
</head>
<body>
<div id='container'></div>
<form id='frm'>
<input type='text' />
<input type='text' />
<input type='submit' value='Go' />
</form>
</body>
</html>
</body>
</html>