Hello all... I am working on a php website, and I am using jquery and some
plugins I use on all my websites...
The problem is that I am doing exactly the same thing I do in every website,
but it suddenlly stopped working on this one...
The jquery works fine, I tried a command, the problem is with the plugins...
When I call a plugin, no matter which one,
an error message always says that the function doesn't exists... But the
same code on other website seems to work just
fine... here are a sample of my codes:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "
> http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
> <html xmlns="http://www.w3.org/1999/xhtml";>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
> <title>::  ::</title>
> <link href="<?php echo base_url(); ?>css/style.css" rel="stylesheet"
> type="text/css" />
> <link href="<?php echo base_url(); ?>css/layout.css" rel="stylesheet"
> type="text/css" />
> <link href="<?php echo base_url(); ?>css/thickbox.css" rel="stylesheet"
> type="text/css" />
> <link href="<?php echo base_url(); ?>css/jquery.tooltip.css"
> rel="stylesheet" type="text/css" />
> <script language="javaScript" type="text/javaScript">
>     window.section = '<?php echo $id; ?>';
> </script>
> <script language="javascript" type="text/javascript" src="<?php echo
> base_url(); ?>js/jquery.js"></script>
> <script language="javascript" type="text/javascript" src="<?php echo
> base_url(); ?>js/status.js"></script>
> <script language="javascript" type="text/javascript" src="<?php echo
> base_url();?>js/jquery.editable-1.3.3.js"></script>
> <script language="javascript" type="text/javascript" src="<?php echo
> base_url();?>js/thickbox.js"></script>
> <script language="javascript" type="text/javascript" src="<?php echo
> base_url();?>js/jquery-ui-1.7.1.custom.min.js"></script>
> <script language="javascript" type="text/javascript" src="<?php echo
> base_url();?>js/jquery.tooltip.js"></script>
> <script language="javascript" type="text/javascript" src="<?php echo
> base_url();?>js/jquery.bgiframe.js"></script>
> <script language="javascript" type="text/javascript" src="<?php echo
> base_url();?>js/jquery.delegate.js"></script>
> <script language="javascript" type="text/javascript" src="<?php echo
> base_url();?>js/jquery.dimensions.js"></script>
> <script language="javaScript" type="text/javaScript">
>     var success = true;
>     $(document).ready(function() {
>        $('#sortable').sortable({
>            'opacity': 0.7,
>            'revert': true,
>            'scroll': true,
>            'handle': $(".imagecontainer").add(".imagecontainer a img"),
>            'update': 'updated'
>            });
>        $('#sortable').disableSelection();
>        $('.thumb').tooltip({
>             delay: 3,
>             showURL: false,
>             bodyHandler: function() {
>                 return $("<img/>").attr("src", this.src);
>             }
>         });
>        });
>

Then I get an error message saying that "sortable" is not a function.... If
I remove this code, then it would say "disableSelection" is not a function,
and "tooltip" is not a function, after that...

Does anyone here might know what's going on? I can't think of anything
else.... =/

Att.
Paulo Henrique Vieira Neves
Bsc. Sistemas de Informação
+55 38 9141 5400
MSN: paulode...@live.com
GTALK: paulode...@gmail.com
SKYPE: paulodemoc

Reply via email to