Author Topic: Ajax js and css - download problem  (Read 385 times)

STEVE

  • Pro Enterprise
  • Jr. Member
  • *
  • Posts: 50
    • View Profile
Ajax js and css - download problem
« on: July 06, 2022, 04:00:33 pm »
Dear paramvir,

I found strange things as below.  Would you help me to resolve this problem?

1. Before : use cdn 
        <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" />
   <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
   <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>

2. After : download js file to local
       <link rel="stylesheet" href="ajax/jquery-ui.css" />
       <script src="ajax/jquery.min.js"></script>
       <script src="ajax/jquery-ui.min.js"></script>

3. Findings

    a. copy & paste : multi cells at once  --> only one cell
    b. drag & fill : smothly working --> one by one
    b. speed : paste  --> slow

4. Questions

    a. The Web/WAS server can't use the internet at all. 
    b. How can I download ajax js and css files without any loss?   

Best Regards,
Steve

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: Ajax js and css - download problem
« Reply #1 on: July 06, 2022, 07:09:44 pm »
Please check and download the same working version of files.

STEVE

  • Pro Enterprise
  • Jr. Member
  • *
  • Posts: 50
    • View Profile
Re: Ajax js and css - download problem
« Reply #2 on: July 06, 2022, 10:26:56 pm »
Thank you

It is working now.