Are jQuery UI language files hosted on Google CDN?

Does Google have language files for the jQuery user interface, or do I need them myself?

If so, there is a way to include them as follows:

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script>
+3
source share
3 answers

You can find the language localization located here: http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/i18n/jquery-ui-i18n.min.js

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/i18n/jquery-ui-i18n.min.js"></script>

Here is an uncompressed view if you want to see what you are working with.

+3
source

Script:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script>

Css:

<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/cupertino/jquery-ui.css" type="text/css" rel="Stylesheet" />

Images belong to the style catalog

See http://code.google.com/apis/ajaxlibs/documentation/index.html#jqueryUI for details.

0
source

, , @:)

i18n

0

Source: https://habr.com/ru/post/1753623/


All Articles