Results 1 to 4 of 4

Thread: jquery ui calendar theme not working on a PC

  1. #1
    Join Date
    May 2012
    Posts
    217
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default jquery ui calendar theme not working on a PC

    Hi

    I got a quick question/issue

    I have integrated a calendar in a website and its using jquery ui blitzer theme and it works perfect on two computers in all browsers but for some reason the styling/theme does not seem to work on this one PC in Chrome, FF and Edge and can't work out why, I have disabled all addons/extensions in the browsers

    it can't be a coding issue cause works perfect on two computers

    has anyone had this issue before or anything

    Thank you in advance
    Last edited by ianhaney; 10-18-2016 at 02:08 PM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Well, this is just a guessing game really. I have seen where third party anti-virus/anti-malware sometimes could have this effect on some scripts. Also, it would appear you are indicating Windows 10 on the problem PC (Edge browser unavailable prior to that), are the other two working PC's also using the same OS as the problem one? Are the other two working PC's perhaps on a network that the problem one is not or visa- versa?

    A link to the page might help us. I would also check in any available forums for the specific script you're using, and make sure everything is up to date (jQuery version, ui version, theme version, script version)
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    May 2012
    Posts
    217
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    I thought it may have been antivirus or something related like that so disabled it all but still didn't work but have sorted the issue now

    I had the following line of code in originally

    Code:
    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/blitzer/jquery-ui.css"/>
    so took that out and put in the following and it's working now

    Code:
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/blitzer/theme.min.css"/>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/blitzer/theme.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/blitzer/jquery-ui.min.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/blitzer/jquery-ui.css">
    just thought was weird as was working on two computers with the 1.11.2 css version

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    OK, well you need both the theme and the ui, but you don't need both the min and non-min versions of each (min is just a compressed version of the same thing). Also, generally the ui is loaded before the theme, so I would go with:

    Code:
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/blitzer/jquery-ui.min.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/blitzer/theme.min.css"/>
    What you had before (when only two PC's worked) apparently lacked the theme, but perhaps that wash cached on the two working PC's, or combined with the ui, which in the latter case would mean all that was required was the update.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Similar Threads

  1. Replies: 3
    Last Post: 08-06-2012, 12:50 AM
  2. Jquery not working in IE 8
    By mravihpcl in forum JavaScript
    Replies: 1
    Last Post: 11-14-2011, 07:42 PM
  3. jQuery Multi Level CSS Menu #2 not working in IE6 using jQuery 1.4.x
    By Rikko in forum Dynamic Drive scripts help
    Replies: 0
    Last Post: 12-28-2010, 10:57 PM
  4. Jquery is not working
    By alimbasha in forum Dynamic Drive scripts help
    Replies: 0
    Last Post: 09-15-2010, 02:49 PM
  5. Jason's Date Input Calendar not working in Master Page
    By pkt30 in forum Dynamic Drive scripts help
    Replies: 1
    Last Post: 06-19-2008, 01:22 PM

Bookmarks

Posting Permissions

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