I have the following:
(function ($) { $.modal = function (options) { var settings = $.extend({}, $.modal.defaults, options), root = getModalDiv(),
In my code, I have:
///<reference path='jquery.d.ts' /> function alertWin(title, message) { $.modal({
An error has occurred:
The modal property does not exist with a value of type 'JQueryStatic'
To solve this problem, I need to create some kind of template file, and if so, how to do it?
javascript typescript
user1679941
source share