Сообщение от WaMpIr
|
после каждого input у которого type="checkbox" добавить label со значением for="" взятым из id="" чекбокса.
|
Как вариант...
<!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">
</style>
<script type="text/javascript">
$(function (){
$('input:checkbox').each(function (){
$(this).after('<label for="'+this.id+'">'+this.id+'</label>');
});
});
</script>
</head>
<body>
<input type='checkbox' id='cb1' />
<div>
<input type='checkbox' id='cb2' />
</div>
</body>
</html>