I am currently experimenting with the bootstrap modal feature using the official Bootstrap documentation. I have copied the code exactly from their website and conducted the following tests:
- Verified in the browser that the sources for js, jquery, and css files are correct
- Created a new file and only imported the necessary elements for the modal to function, ensuring that my own .css or .js files are not causing any interference
- Tested this on Chrome, IE, Firefox, including private browsing mode - Same issue persists where clicking on the button link does not trigger the modal popup
- Checked the console for any error messages - No errors were found
I am puzzled as to what could be causing this problem. Could there be an issue with the server-side (using xampp v3.2.2 on port :8080) preventing it from working properly? - As Stack Overflow requires some form of code, I have included the head section below
Here is my complete code: http://jsfiddle.net/bLajz5ud/
<html>
<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 -->
<link rel="stylesheet" href="css/bootstrap.css">
<title></title>
</head>