button - jQuery UI themes not working? -
here simple piece of code doesn't seem expecting. when changing css http://code.jquery.com/ui/1.10.2/themes/start/jquery-ui.css ('start' theme) other of themes (like http://code.jquery.com/ui/1.10.2/themes/radmond/jquery-ui.css instance radmond theme) standard available @ jqueryui.com button keeps looking same ... seems themes producing same style button?
<!doctype html> <html> <head> <title>untitled document</title> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.2/themes/start/jquery-ui.css" /> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script> </head> <body> <button id="button">dit een button</button> </body> </html>
Comments
Post a Comment