[jQuery] Jquery populate

[jQuery] Jquery populate


I try the plugin jquery.populate and for me not work.
I have:
<html>
<head>
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.populate.js" type="text/javascript"></script>
<script>
jQuery(document).ready(function($) {
$('div.example').populate({'text-1':'text', 'text-2':'More text'})
})
</script>
</head>
<body>
<div class="example">
<input type="text" size="10" name="text-1" value="tata">
<input type="text" size="10" name="text-2" value="tatamana">
</div>
</body>
</html>
but not work?
Why?