thank you now I get the idea how to work with the UI:
so I did this take these two files:
jquery-1.7.1.min , jquery-ui-1.8.17.custom.min then I called with <script> inside the document:
HTML Code:
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.17.custom.min.js"></script>
then I've applied the css file related with:
HTML Code:
<link type="text/css" href="css/jquery-ui.css" rel="stylesheet">
after that I called it with function:
HTML Code:
<script type="text/javascript">
$(function(){
// Tabs
$('#tabs').tabs();
// Accordion
$("#accordion").accordion({ header: "h3" });
});
</script>
but I still have little question sorry for getting ask too much about it, but are they used as objects here or I'm wrong about this point?
Bookmarks