Results 1 to 3 of 3

Thread: installing JQuery/JQuery UI

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Feb 2000
    Location
    Dunmow,Essex,England
    Posts
    898

    installing JQuery/JQuery UI

    Hi All,

    In my project (VS2010). I have a directory called JQuery in this directory I have placed 2 files:
    jquery-1.8.0.js = Core JQuery
    jquery-ui-1.8.23.custom.min.js = JQuery UI.

    In a masterpage in the <head> section I place the following and then when I F5 my code I get a blank page. If I remove the 2 references my default page shows as expected.

    <script type="text/javascript" src="JQuery/jquery-1.8.0.js" />
    <script type="text/javascript" src="JQuery/jquery-ui-1.8.23.custom.min.js" />

    What have I done wrong?

  2. #2
    Fanatic Member
    Join Date
    Jul 2007
    Posts
    617

    Re: installing JQuery/JQuery UI

    Library conflict may occur, why not try using it one at a time and see the result. My 2 cents.
    Learn something new every .001 second.

  3. #3
    Member
    Join Date
    Jul 2019
    Location
    Ahmedabad
    Posts
    57

    Re: installing JQuery/JQuery UI

    It is library conflict error.you can add to these library on head section.
    Code:
    <head>
    <link href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
             rel = "stylesheet">
          <script src = "https://code.jquery.com/jquery-1.10.2.js"></script>
          <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
    </head>

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