Сообщение от vommer
|
Подскажите, что может мешать/куда копать
|
Как вариант...
<!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'>
div {
padding: 20px;
}
.one {
background-color: green;
}
.two {
background-color: yellow;
}
</style>
<script type='text/javascript'>
$(function(){
$('.one').click(function (){
$(this).removeClass('one');
$(this).addClass('two');
$(this).find('input[placeholder="Name"]').get(0).focus();
});
});
</script>
</head>
<body>
<div class="one">
<input value="" placeholder="Name" class="control" type="text" />
</div>
</body>
</html>
</html>