Сообщение от ktelfon
|
нету какого-то примера
|
Его всегда можно сделать...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css">
.box {
width: 100px;
height: 20px;
margin-top: 5px;
border: 1px solid;
cursor: pointer;
</style>
<script type="text/javascript">
$(document).ready(function (){
$('#bt').click(function () {
var div = $('<div></div>')
div.addClass('box')
div.click(function (){
alert('Opa!')
})
$('#container').append(div)
})
})
</script>
</head>
<body>
<input id='bt' type='button' value='Add' />
<div id='container'></div>
</body>
</html>
</body>
</html>