Skip to content

Instantly share code, notes, and snippets.

@smpadhy
Created November 25, 2017 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smpadhy/c666cd874bafbf4cdb54afa87f6d3162 to your computer and use it in GitHub Desktop.
Save smpadhy/c666cd874bafbf4cdb54afa87f6d3162 to your computer and use it in GitHub Desktop.
Getting "Uncaught TypeError: $(...).select2 is not a function" when the give index.html file is used within Electron Framework
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>TestPage</title>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js' type='text/javascript' >
</script>
<script>
try{
$ = jQuery = module.exports
console.log("$.fn", $.fn)
}catch(e){}
</script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.0/css/select2.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2-bootstrap-theme/0.1.0-beta.10/select2-bootstrap.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.0/js/select2.min.js" onload="if($.fn){console.log('select2 loaded:', $.fn);}"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<select class="js-example-basic-single" name="state">
<option value="AL">Alabama</option>
<option value="IL">Illinois</option>
<option value="WY">Wyoming</option>
</select>
</div>
</div>
</div>
<script>
//$.noConflict()
$(document).ready(function() {
console.log('fn.select2: ', $.fn)
$('.js-example-basic-single').select2()
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment