Why isn't my .hide() function working? [closed] - javascript

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I've been doing a lot of FreeCodeCamp and CodeCademy courses recently and finally decided to try to create my own webpage. I'm wondering why my code isn't working? Did I not src jQuery correctly? The Code[1]

Put https:// before code.jquery.com in your <script> tag. Like this: <script src="https://code.jquery.com/jquery-3.1.1.js"></script>

As the other answer said, put https:// in front of your src in the script-call - or just use // which will work regardless of specific protocol.

Related

Why doesn't CSS Display none!important working? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
When I make display none from developer tool, it works.
But doesn't work when I write CSS.
Can anyone explain why display:none!important isn't working?
Here is how I tried... http://cssdeck.com/labs/ykhhehvv
You are applying css to the page which is at mailchimp server not at your localhost.And both are not same.So it will be not affected actually. If you will try in developer tool, it will work but in real it will not affected.

Issue with my website url [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
obiventures.com is my website, when I open this site I found http://obiventures.com/OBI1.0/home.html this URL how to remove/hide this OBI1.0/home.html from website URL? please help me.
You need to move the home.html file in to the start directory, in other words not in any folders or just out of the OBI1.0 folder, and rename it index.html. Then you can go to obiventures.com / http://obiventures.com / http://obiventures.com/ and it will be there.
Oh, and nice website by the way.

Making my website support emoji one? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
So, i tried adding emoji one support in my website by adding the script and css they provided.
i tried as it is in the demo but no result.
http://jsfiddle.net/v7e2krjr/6/
<script src="//cdn.jsdelivr.net/emojione/1.5.2/lib/js/emojione.min.js"></script>
<link rel="stylesheet" href="//cdn.jsdelivr.net/emojione/1.5.2/assets/css/emojione.min.css" />
You forget = after class in your html
http://jsfiddle.net/v7e2krjr/3/

How can i enable auto play from this sitepoint bootstrap carousel tutorial? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
i was thinking to use this in my project, but i couldn't enable the autoplay
http://codepen.io/SitePoint/pen/KwBWJd
i tried this way but didnt work.
$myCarousel.carousel({interval: 40000});
Thanks :)
comment out this line below and it will autoplay
//$myCarousel.carousel('pause');
You'll need to call the pause function like this: $myCarousel".carousel('pause');. This is how all methods are called on bootstrap components, following the jQuery UI convention.
Sir no Need to Use :$myCarousel.carousel('pause');
Working Fiddle :Fiddle

Don't understand how Google's infinite load example works [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
Would anyone be willing to explain how the following example works?
http://scrollsample.appspot.com/items
I don't understand how the URL gets updated (changes from /items?page=2 to /items?page=3)
I also do not understand how the rel tags get updated either (prev/next/canonical)
Thanks for any help you can provide.
Check out http://scrollsample.appspot.com/static/main.js
and look for the initPaginator function. There's a call to history.replaceState.
history.replaceState allows you to update the address bar without a page change.

Categories