Click here to Skip to main content
15,894,291 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
XML
success: function (data) {
                      var buf = data.d;
                      alert(buf);
                      $(".tab-content col-md-9 #tab1").append("<div>'" + buf + "'</div>");

}

I am unable to insert data into the existing bootstrap tabbed pane.
Posted
Comments
ZurdoDev 27-Jan-15 7:43am    
You'll have to debug it then.

Check $(".tab-content col-md-9 #tab1").length and make sure it finds the element.
Check buf.

1 solution

You can use firefox (firebug) or chrome developer panel (both accessed pressing [F12]) and place a breakpoint at the lines giving you the errors. You can then easily check the values and see what is wrong.

Good luck!
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900