1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| <!DOCTYPE html>
<html>
<head>
<meta http-equiv='content-type' content='text/html; charset=UTF-8'>
<title> - jsFiddle demo</title>
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
var i=0;
$('#add').on('click', function(){
$('#screen').append( $('<p> bonjour <i>toute</i> la <b>com</b>pagnie '+ ++i +'</p>') )
})
$('#screen').on('mouseup','p', function(){ alert($(this).html());})
})
</script>
</head>
<body>
<input id='add' type='button' value='ajouter' />
<div id='screen'>
</div>
</body>
</html> |
Partager