No javascript source from Github pages [closed]

The devtools console gives it away: Mixed Content: The page at ‘https://rowansdabomb.github.io/‘ was loaded over HTTPS, but requested an insecure script ‘http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.2.min.js‘. This request has been blocked; the content must be served over HTTPS. Your page is being served via HTTPS (which is great) but it tries to load jQuery via HTTP, which is not … Read more

How to commit clone to my GitHub as a new project?

If the other code is also on github I’d recommend to fork it there and then clone your fork. If you have alredy started working on your clone you can add another remote repository. The original source you cloned is normally called “origin”, you can name yours like you want: git remote add <name-of-remote> git://github.com/user/repo.git … Read more