I have a login.php file
<div class="content tabs">
</div>
then flush that login.php to the output html file
switch ($temp) {
case 'php':
ob_start();
include_once($file);
$content = @ob_get_contents();
ob_end_clean();
break;
However, when I check that login.html page which come from the login.php
there’s
<div class="content tabs ui-tabs ui-widget-control ui-corner-all">
</div>
as you can see the div of login.php got inserted the ui-tabs ui-widget….etc from jquery ui elements.. who did that? which file insert those into the div? It’s not in any javascript files, css style sheet. but who?
These classes are added by the Jquery UI CSS framework. These the default classes added to the top container of each widget.
http://jqueryui.com/docs/Theming/API
http://code.jquery.com/ui/1.9.0-rc.1/jquery-ui.js
Hope this helps.
Thanks
aks