@bcworkz Okay, I looked through the plugin code, and I don’t see any indication of it deregistering or dequeuing the native library. In fact, if I’m understanding correctly, it’s enqueuing certain things remotely and enqueuing several others from the local library.
What it’s enqueuing is a jQuery UI library (specifically https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js) that doesn’t appear to have a local equivalent in the core wp-includes\js\jquery\
folder. I’m not familiar enough with jQuery to know exactly what it is, but it looks like a concatenated, minified version of the the library in the core jQuery folder. If so, replacing it might be more complicated than just registering and queuing a different script.
There’s also a separate HTML script
tag that references https://code.jquery.com/ui/1.12.1/jquery-ui.js as the source, but it’s not registered or enqueued; I assume the src attribute means it’s running that script directly from the jQuery CDN, but I’m not sure. If it is doing that directly, that means I can’t substitute a local script through functions.php and would have to fork the plugin to get rid of it, doesn’t it?