How to use jQuery with SPFx projects

jQuery is a JavaScript library that helped to shape the internet we all know today, even though it’s first release was 13 years ago and despite the fact we now have access to other powerful libraries like React and Angular, jQuery is still used by 80% of the top 1M sites in the web.

With SharePoint framework you can use pretty much any JavaScript library to build your application however you will need to know how to make them available in the solution.

In this article I’ll explain you how to add jQuery to your SPFx solutions using 2 different methods.

SPFx jQuery

Include jQuery as a dependency using the default generator

This method can be used in projects that were created with the out of the box generator by doing the following:

  1. On your SPFx project expand the config folder
  2. Edit the config.json file
  3. Look for the externals section and add the following dependency
    "jquery": {
    	 "path": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js",
    	 "globalName": "jQuery"
    }
    
  4. Open the console in the project folder and add the type definitions by running the following command
    npm install --save @types/jquery
  5. On your ts file import jQuery
    import * as $ from 'jquery';
  6. To test the use of jQuery in your empty project replace the code in the render method by the following:
    domElement.innerHTML = `
    SharePoint ♥ jQuery!

    This SPFx webpart is using jQuery ${$.fn.jquery}

    `;

SPFx working with jQuery

Note: On step 3 you can opt to use a local version of jQuery instead, all you have to do is add the JS file to your project, in the following example jQuery was added locally to a js folder inside the src folder.

"jquery": {
	 "path": "./src/webparts/helloWorld/js/jquery.min.js",
	 "globalName": "jQuery"
}

This will avoid getting an external CDN url listed in the installation popup and jQuery will be served from the Microsoft CDN along with the web part.

Create a project with jQuery using the PnP SPFx Yeoman generator

The PnP SPFx Yeoman generator extends the default SPFx Yeoman generator from Microsoft adding extra capabilities and tools that otherwise need to the added manually to the project.

For an optimized development workflow, it extends the capabilities for ReactJS, and Knockout projects and support for additional frameworks, such as HandlebarsJS, Aurelia, VueJS and Angular Elements. It also includes advanced code analysis and testing tools, which you can take advantage of in your development work.

To build your SPFx webpart with jQuery included already do the following:

  1. Install the PnP SPFx Yeoman Generator
    npm install -g @pnp/generator-spfx
  2. Once installed execute the generator
    yo @pnp/spfx
  3. On the choose framework choose No Framework
  4. In the libraries select jQuery and any other library you may want to use
    SPFx jQuery Generator
  5. Fill all the other options in the generator
  6. Once the project is generated open the ts file in the src folder
  7. Import jQuery by adding the following import to your code
     import $ from 'jquery'
  8. To test the use of jQuery in your empty project replace the code in the render method by the following:
    domElement.innerHTML = `
    SharePoint ♥ jQuery!

    This SPFx webpart is using jQuery ${$.fn.jquery}

    `;

Design vector created by stories – www.freepik.com


No comments yet

Leave a Reply


I've been working with Microsoft Technologies over the last ten years, mainly focused on creating collaboration and productivity solutions that drive the adoption of Microsoft Modern Workplace.

%d bloggers like this: