Hi, I have created a Div Tag inside menu li and added a Class Div1 to it. Everything working good.. But Now i want to create div tags with div1 ,and on another click div2 and then div3 .... So s it possible to use variable and have a counting inside it..Please Suggest me..
$(document).ready(function(){
$(".menu a").click(function () {
$("<div> Label </div>").appendTo(".menu li").addClass("div1");
$(".div1").show(function () {
$(".div1").editInPlace({
url: "./server",
show_buttons: true
});//editinplace
});//show
});//click
});