![]() |
Including jQuery help! - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: Including jQuery help! (/showthread.php?tid=41234) |
Including jQuery help! - El Forum - 05-02-2011 [eluser]Unknown[/eluser] I have currently downloaded a custom jQuery-ui theme and in order for it to work, I have to include these .css and .js files onto my header which I've done this way. Code: <link rel="stylesheet" type="text/css" href="<?php echo base_url();?>scripts/css/jquery-ui-1.8.12.custom.css" media="screen" /> The jQuery mainly works, all it's functions are okay so far. Although, the jQuery-ui has some problems working. The src codes above may be the problem though, but the .css file that I've included was totally readable. The jquery-ui.1.8.12.custom.min.js file is the one I think that's causing the trouble but I don't know how to fix it... I declared its src path the same as how I did it with the .css anyway so I'm guessing that it should work (seeing that the jquery-1.5.1.min.js works as well). Here's the weird part, I tried using an Internet library / javascript file (dunno what you call it) such as this Code: http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js Including jQuery help! - El Forum - 05-02-2011 [eluser]InsiteFX[/eluser] Code: <link rel="stylesheet" type="text/css" href="<?php echo base_url();?>scripts/css/jquery-ui-1.8.12.custom.css" media="screen" /> InsiteFX |