Trying to Get Lights On My Button To Turn On

For the blinking function, can you respond in that post so as to avoid confusion?

Still same problem! :frowning: :frowning: … see screenshot here: https://s33.postimg.cc/bhfx9hfjj/issues_2.jpg

Oh boy. I’m really not sure …

If you are using $ then you are using jQuery.

I don’t know if it will make a difference, but try adding this at the top of the JavaScript page:
$(document).ready(function () {
“use strict”;

Also add Bootstrap.js to your JavaScript settings, since you are using the CSS:
https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js

I did that already. It works in Code Pen, but won’t work in GitHub…weirdest thing ever!! https://github.com/MtZionCode/MtZionCode.github.io/blob/master/profile.js
https://github.com/MtZionCode/MtZionCode.github.io/blob/master/index.html

Ok, on your index page, you have the jquery link in the header. Try to place it after the last " < / div > "
and before the end body tag.

You do not have the bootstrap.min.js . That should go under the jquery.

On your profile page, you do not have the
$(document).ready(function () {
“use strict”;

before any else on the page.

CodePen supplies a lot of what we ask for, almost automatically. GitHub won’t. You will need to hard code your requests.

See if making these changes on GitHub will help.