You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the place of "parameters" you can add as much as parameters as you want. The q parameter is the selector, make sure you include it even when you are'nt using it.
508
+
On the place of "parameters" you can add as much as parameters as you want. The q parameter is the selector, make sure you include it even when you aren't using it.
510
509
511
510
You can call your extension like this:
512
511
```js
513
512
$('#myelement').yourExtension(parameters);
514
513
//Notice that q isn't available, q is passed by QQuery. It is just the $('#myelement') selector object.
515
514
```
516
515
517
-
If you are using NodeJS, you have to use the global like this:
516
+
If you are using NodeJS, you have to use the global extension setup like this:
0 commit comments