Widgets > wijtabs > wijtabs Tutorial > wijtabs Step 2 of 3: Initializing the Widget |
In the previous step, you added markup for a list and content for the tabs. Now you can add the jQuery script to initialize the widget.
After the closing </div>
tags you added in the previous step, enter the following jQuery script to initialize the wijtabs widget:
<script id="scriptInit" type="text/javascript">
$(document).ready(function () {
$("#tabs").wijtabs();
});
</script>