Results 1 to 4 of 4

Thread: Has anyone ever received this error (see attachment)

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    Jan 2004
    Location
    Southern California
    Posts
    5,034

    Has anyone ever received this error (see attachment)

    I'm trying to run a webpage and I get this error. My page is using jQuery in it. Below are the references I have in my page.

    Code:
            <link href="css/portal_standard_calendar.css" rel="stylesheet" type="text/css" />
            <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" />
            <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" />  
            <link rel='stylesheet' type='text/css' href='js/fullcalendar/theme.css' />
            <link rel='stylesheet' type='text/css' href='js/fullcalendar/fullcalendar.css' />
            <link rel='stylesheet' type='text/css' href='js/fullcalendar/fullcalendar.print.css' media='print' />  
    
            <script type='text/javascript' src='js/fullcalendar/fullcalendar.min.js'></script>
            <script type="text/javascript" src="http://code.jquery.com/ui/1.10.1/jquery-ui.js" ></script>
            <script type='text/javascript' src='js/jquery/jquery-ui-1.8.11.custom.min.js'></script>
    Blake

  2. #2
    Frenzied Member tr333's Avatar
    Join Date
    Nov 2004
    Location
    /dev/st0
    Posts
    1,605

    Re: Has anyone ever received this error (see attachment)

    Any particular reason why you're loading jQuery UI 1.10.1 from the jQuery CDN, and also 1.8.11 from a local copy? This might cause some conflicts...
    CSS layout comes in to the 21st century with flexbox!
    Just another Perl hacker,

  3. #3

    Thread Starter
    PowerPoster
    Join Date
    Jan 2004
    Location
    Southern California
    Posts
    5,034

    Re: Has anyone ever received this error (see attachment)

    I was told to use these libraries. I'm new to jQuery so I don't know alot yet.
    Blake

  4. #4
    Frenzied Member tr333's Avatar
    Join Date
    Nov 2004
    Location
    /dev/st0
    Posts
    1,605

    Re: Has anyone ever received this error (see attachment)

    HTML Code:
    1. <link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/themes/smoothness/jquery-ui.css" />
    2. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    3. <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
    Put the stylesheet tag in your <head> and the script tags at the end just before closing </body>. You shouldn't need any other references to jQuery or jQuery UI.
    CSS layout comes in to the 21st century with flexbox!
    Just another Perl hacker,

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width