This may be a small issue , but I am not being able to figure it out , so please help me.
In the code below I have a textarea and a button. button div is set to display:none initially. When the textarea is clicked it enlarges and the div of the button gets displayed .There is a link named DUPLICATE , which on click appends a similar set of textarea and button to the main div.
Now the problem is problem is when there are multiple textareas , the jquery click functions work only with the original textarea , not with the others . Also the effect of the function get reflected in all the textareas , i.e. all the textareas gets enlarged and the buttons get displayed. I want only the specific textarea that is clicked to be enlarged and corresponding button to be displayed.
Assigning dynamic id's may help but is there any other way with jquery .
<script type="text/javascript">
$(document).ready(function(){
test={
btn:function(){
$(this).css("height","100px");
$(this).parent().siblings(".btn").css("display","block");
},
duplicate:function(e){
e.preventDefault();
$(".main").append('<div class="child"><textarea name="text" class="text" id="text"></textarea></div><div class="btn"><input type="button" value="Button" /></div>');
}
}
$("#text").click(test.btn);
$("#duplicate").click(test.duplicate);
});
</script>
<style type="text/css">
.btn
{
display:none;
}
</style>
</head>
<body>
<div class="main">
<a href="#" id="duplicate">DUPLICATE</a>
<div class="child">
<textarea name="text" class="text" id="text"></textarea>
</div>
<div class="btn">
<input type="button" value="Button" />
</div>
</div>
</body>
</html>
on(). Also, you should keep ID's unique, otherwise jQuery will most of the time only work on the first instance, so if targeting several elements use classes. – adeneo Sep 9 '12 at 6:48