i have modified jquery drop down plugin on text box. it is working ok. but when i use it on dynamically created text boxes it doesnot work ? Plugin is here
jQuery.fn.textdropdown = function() {
with ($(this)) {
with (next('ul:first')) {
find('li').click(function() {
$(this).parent().prev('.textdropdown-outer').find('input:first').attr('value', $(this).html());
$(this).parent().hide();
});
hide();
}
keypress(function() {
$(this).parent().next('ul:first').hide();
});
change(function() {
$(this).parent().next('ul:first').hide();
});
wrap('<div class="textdropdown-outer" style="width: ' + width() + 'px; height: ' + (height() + 5) + 'px"></div>');
var btn = $(this);
/////////////////////////////////////
btn.click(function()
{
var p = parent();
with (p.next('ul:first')) {
css('position', 'absolute');
css('width', p.width());
css('left', p.position().left);
css('top', p.position().top + p.height() + 1);
toggle();
}
});
}
}
and call to plugin is
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Dan labs - simple text drop down list jquery </title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="textdropdown1.jquery.js"></script>
<style type="text/css">
.textdropdown-outer {
border: none;
float: left;
}
.txtdropdown
{
width: 40px;
height : 16px;
}
ul {
border: 1px solid #ccc;
padding: 0px;
list-style: none;
margin: 0px;
}
ul li {
padding: 2px;
display: block;<br>
list-style: none;
margin: 0px;
}
ul li:hover {
background-color: #efefef;
cursor: pointer;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('.myClass').textdropdown();
});
</script>
</head>
<body>
<input type="text" id="txtdropdown" class="myClass" />
<ul>
<li>00:30</li>
<li>01:00</li>
<li>01:30</li>
<li>02:00</li>
<li>02:30</li>
<li>03:30</li>
<li>04:00</li>
<li>04:30</li>
<li>05:00</li>
<li>06:00</li>
<li>06:30</li>
</ul>
</body>
</html>
it is working on class. but when i use the same class it drops down only in the first text box. any idea how can i do it.
