Skip to main content

All Questions

Tagged with
0 votes
1 answer
298 views

electronjs $(...).modal is not a function

So after trying to debug for about 2 hrs. and still no resolution, I'm here to ask for some help. I'm creating a simple chat app in electronjs and there I used a bootstrap modal. An error is occuring: ...
T.M15's user avatar
  • 396
1 vote
2 answers
3k views

Electron - Executing a program on button click

I am new to Electron and i want to build a small app for myself where i can execute programs/games etc on a href click. If i open the electron app it automatically starts the program/game. var child = ...
Seito Kimbo's user avatar
1 vote
2 answers
5k views

JQuery not working with electron framework

I'm trying to using jquery with electron framework using electron fiddle. However jquery seems not working properly and animation are not executed. The example is the following: https://www.w3schools....
Virgula's user avatar
  • 318
0 votes
2 answers
203 views

I get the error $(...).modal is not a function even though bootstrap is imported after jQuery how can i fix this (using npm versions)?

I did extensive research before posting this issue and feel I have exhausted the online documentation and Stack Overflow. My issue: I'm using the npm versions of bootstrap with the tempus dominus ...
Lucas's user avatar
  • 628
2 votes
1 answer
698 views

Electron : can not find module jQuery

I am trying to use jQuery and bootstrap in my electron project I want to use them like : window.$ = window.jQuery = require('jquery') var bootstrap = require('bootstrap') each of these lines ...
amirhosein's user avatar
1 vote
1 answer
2k views

Import JQuery in HTML with Electron

I'm writing some HTML code with ElectronJS. I need to use JQuery within HTML, so I installed JQuery with npm install jquery. But what file should I import to use JQuery? <!DOCTYPE html> <...
QueN's user avatar
  • 163
0 votes
1 answer
343 views

Electron (electron-packager) Script with jQuery is not loaded

when I am building and packaging my electron app with electron-packager or electron-builder I got that problem that a js file I load in my app.js is not properly loaded / throws errors. I cant look up ...
Felix Gaebler's user avatar
0 votes
0 answers
100 views

Can not find module 'jquery-slider' in node.js project

I have installed packages inside node-modules and I have required three package: var lodash=require('lodash'); var jquery=require('jquery'); var slider=require('jquery-slider'); First two is working ...
Habibul Hasan's user avatar