Hi,everybody,
i have this code,what is the problem.button clcik nothing to display,

i want to button click display label and textbox.

$(document).ready(function(){
$("#planbar").click(function() {
var html="";
var i=0;
var display=" ";
/*var numitem = $(this).val; if(numitem>5) numitem=5;
alert(numitem);
for(i=1;i<=numitem;i++) {*/

html+="<div><b>Planbar</b> </div>" +

"<div class='field'>" +
 "<span style='width:115px;float-left;text-align:right'>Where:</div>"
"<div>"
;
// }

$("planbars").html(html);
});
});
         <input type="button" id="planbar" value="+ "  />
           <div id="planbars" style="float:left;width:150px;margin-left:20px;height:210px;overflow-y:scroll;border: 1px solid black;">
</div>

Thanks

Recommended Answers

All 6 Replies

Replce line 18 with:

$('#planbars').html(html);

hi blockblue,

i changed that line but still nothing to response.
plz help me.

You're missing another plus at the end of line 13.

Correct that and then post any JavaScript errors you're seeing.

yah his right missing my advice to see the client side code error like javascript press control+shift+j

hi, blockblu,

Thank you very much solved my problem.
and Thanks to everybody,

$("#planbar").click(function() {

replace this line to
$("#planbars").click(function() {

you have missed type the id of div

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.