CodeIgniter Forums
jquery is not working with blueimp upload - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: jquery is not working with blueimp upload (/showthread.php?tid=51994)

Pages: 1 2


jquery is not working with blueimp upload - El Forum - 05-30-2012

[eluser]weboap[/eluser]

you have issues setting your config (base_url())
Code:
<link rel="stylesheet" href="<?php echo base_url()?>css/style.css">

or
another way
Code:
<head>
<base href="<?php echo base_url()?>" />
</head>

//then leave
<link rel="stylesheet" href="css/style.css">


read the guide and watch some tutorials before you go any farther.

http://net.tutsplus.com/tutorials/php/codeigniter-from-scratch-day-8-ajax/

http://codeigniter.com/wiki/Category:Help::Tutorials

Note: this is an answer for thread :
following back from http://ellislab.com/forums/viewthread/218279/
@bill19 : @InsiteFX above already answered your question.