Getting Started with Kendo UI for jQuery
This article explains how to use Kendo UI for jQuery in a new application. You will create a project and add a UI component.
Quick Start
Set up your first Kendo UI for jQuery project and start building in minutes. Use the Kendo CLI for fast command-line scaffolding or the Kendo UI Productivity Tools extension for VS Code for a visual, wizard-driven experience.
The Kendo CLI offers both an interactive wizard and direct setup commands. If you are new to Kendo UI for jQuery, the wizard gives you the fastest way to start.
-
Install the Kendo CLI globally:
SHnpm i -g @progress/kendo-cli@latest -
Launch the interactive wizard by running
kendowith no arguments:SHkendo -
In the Quick Start section, select Create a new project, then follow the prompts to configure your project.
When the setup is complete, the wizard shows a summary similar to this:
╭───────────────────────────────────────────────────────────────╮
│ ✓ Kendo UI for jQuery app ready │
│ │
│ Next steps: │
│ cd MyApp │
│ npm install │
│ npm start │
│ │
│ Theme Default │
│ │
│ Docs https://www.telerik.com/kendo-jquery-ui/documentation │
╰───────────────────────────────────────────────────────────────╯
Run the commands in the Next steps section to install dependencies and start the development server.
Prefer to run commands manually? See Generate a Kendo UI for jQuery Project for all available options and templates.
Use the Kendo UI Productivity Tools extension for VS Code to scaffold a project from a template wizard.
-
Install the extension from the Visual Studio Marketplace.
-
On Windows, open the VS Code Command Palette (
Ctrl + Shift + P). On macOS, use (Command + Shift + P). Type "Kendo UI Template Wizard: Launch". -
Set the project name and path, choose Kendo UI for jQuery as the project type and select a Theme (Meridian, Default, Bootstrap, Material, Fluent, or Classic).
-
Click Create Project, then install dependencies and run:
SHnpm i && npm start
Have an Existing Project?
If you want to add Kendo UI for jQuery components to an existing project, add the required scripts and styles manually:
-
Add the Kendo UI theme and scripts to your HTML page:
html<!-- Kendo UI theme --> <link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/14.5.0/default/default-main.css" /> <!-- jQuery --> <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> <!-- Kendo UI scripts --> <script src="https://kendo.cdn.telerik.com/2026.3.811/js/kendo.all.min.js"></script> -
Initialize a Kendo UI component:
html<input id="my-datepicker" /> <script> $(function() { $("#my-datepicker").kendoDatePicker(); }); </script>
Prefer installing through a package manager? See Installing with NPM.
You now have your first Kendo UI for jQuery component running in your application.