I am trying to use the jquery UI tab feature from the link http://jqueryui.com/demos/tabs/manipulation.html
What I did is copied the source code from the webpage to an html file in my pc.. Also added corresponding css and js files and linked them index page. bt there seems to be a problem with the css part as the design is not wrking fine in my page. The issue seems to be with the file jquery.ui.all.css
whose content is
/*!
* jQuery UI CSS Framework 1.8.21
*
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Theming
*/
@import "jquery.ui.base.css";
@import "jquery.ui.theme.css";
Nw my page looks like the screenshot ive attached … the list styling doesnt seem to be wrking….
How does the @import thing wrk??Could that be the issue?
The stylesheet which is being used uses
@importsto import 2 other stylesheets. From within one of these stylesheets that is being imported, it is then importing more stylesheets. So you will need all of these for this demo to work.I would suggest downloading one of the themes from jQueryUI as these dont use
@importsand have all the styles.Alternatively, use a CDN to access the javascript and css files. I use the Microsoft CDN
You can add a link in your project to:
and then