How to view the html generated by jquery
Hello,
I am working on an MVC3 application in IE 9 and very new to jqueryui. One of the pages uses the jqueryui tab. The content for each tab is loaded dynamically, excerpt -
- tab_content += "<div style='float:left;text-align:left;width:55%;padding:4px;height:90%;overflow-y:scroll;'>" +
- "<span style='display:inline-block;border:1px solid black;text-align:center;float:left;padding:2px;background-color:Gray;color:white;font-weight:bold;'>Sublists</span>" +
- "<div style='float:left;width:100%;margin-top:3px; text-align:left;'>" +
- "<select id='SelSublists" + tabValue + "'></select>" +
- "</div></div>"
I am trying to add an onchange event to the drop list element.
My
question is - is there a way to view the html generated? When I right click to view source the div to which the content is written is displayed as below -
- <div id="divMatrixTabs" style="clear: both; padding: 5px 0 0 0; width: 900px; height: 450px;
- display: none; border: 1px solid grey;">
- <ul>
- </ul>
- </div>
Thanks for reading this.
Amit