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 is it possible to use variable and have a counter inside it?
$(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
});