Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / NewStats: 3,209,367 members, 8,005,817 topics. Date: Monday, 18 November 2024 at 11:28 AM |
Nairaland Forum / Science/Technology / Programming / How do I access jQuery and bootstrap on local host? (solved) (1421 Views)
RIP CSS and Bootstrap. Tailwind Is The Real Deal. / Built A To-do-list Web App With Django And Bootstrap. / How To Create A Responsive Login Form Using Html, Css And Bootstrap (2) (3) (4)
How do I access jQuery and bootstrap on local host? (solved) by squash47(m): 5:13pm On Apr 06, 2021 |
Hello all, I tried running *Navbar* and *modals* boostrap file on Xampp local Host but it's not expanding. Other bootstrap codes are working. Please house, what's the solution to the problem. ? Do I need to download and link the page to jQuery first ? *Please I want to run the site on local Host with no internet at all*. MODIFIED. After series of research, I decided to include the general Google bootstrap and jQuery link at the appropriate places in my site. that's how I solved the problem. if you are having similar challange, don't bother running bootstrap locally. just insert the link. The good news is that once you have accessed the internet once, whether your data is on or off, you will still be able to use bootstrap and jQuery. |
Re: How do I access jQuery and bootstrap on local host? (solved) by Karleb(m): 6:34pm On Apr 06, 2021 |
Are you using a CDN? If yes, you can't use CDN without internet. To use bootstrap without internet, you need to download the css and Javascript file and reference them in the head tag. CDN is that link tag you copy from bootstrap website. |
Re: How do I access jQuery and bootstrap on local host? (solved) by squash47(m): 6:51pm On Apr 06, 2021 |
Karleb: I downloaded the bootstrap file. but I don't know how to link it. |
Re: How do I access jQuery and bootstrap on local host? (solved) by Karleb(m): 7:05pm On Apr 06, 2021 |
squash47: I don't know how your folders are related, maybe you can share a picture. Let's assume you have 2 folder structures. Project - index.php Bootstrap - css - bootstrap.css Bootstrap - js - bootstrap.js To link the css and js to your index.php you'll do. ../Bootstrap/css/bootstrap.css ../Bootstrap/js/bootstrap.js 2 Likes |
Re: How do I access jQuery and bootstrap on local host? (solved) by squash47(m): 7:43pm On Apr 06, 2021 |
Karleb:I will do just that sir. I will let you Know of any progress I make. |
Re: How do I access jQuery and bootstrap on local host? (solved) by PHPdeveloper200: 9:08pm On Apr 06, 2021 |
squash47: If you are using bootstrap offline, your file must be linked to jQuery. jQuery is a prerequisite to run bootstrap You should also check your bootstrap version. Not all versions support modals and cards(though there is a way to work around this). Also make sure your jQuery version is compatible with your bootstrap version 2 Likes |
Re: How do I access jQuery and bootstrap on local host? (solved) by squash47(m): 9:35pm On Apr 06, 2021 |
PHPdeveloper200: I tire downloading jQuery, but it has no single file like bootstrap. Not even a zip file. All I saw was a page filled with pre written codes. I don't know if that's why you mean by jQuery file. And if yes, how do I get the files into my system. |
Re: How do I access jQuery and bootstrap on local host? (solved) by PHPdeveloper200: 9:53pm On Apr 06, 2021 |
squash47: jQuery does not contain bootstrap codes. I will post a picture of how your file should be tomorrow |
Re: How do I access jQuery and bootstrap on local host? (solved) by Karleb(m): 10:02pm On Apr 06, 2021 |
PHPdeveloper200: I thought bootstrap dropped jquery for vanilla Javascript in the latest bootstrap? |
Re: How do I access jQuery and bootstrap on local host? (solved) by PHPdeveloper200: 10:07pm On Apr 06, 2021 |
Karleb: Well I am not aware of this since I don't use the latest version of bootstrap. But if this is true then that means a lot of codes will be rewritten |
Re: How do I access jQuery and bootstrap on local host? (solved) by PHPdeveloper200: 10:12pm On Apr 06, 2021 |
|
Re: How do I access jQuery and bootstrap on local host? (solved) by KennyFranklin(m): 10:19pm On Apr 06, 2021 |
PHPdeveloper200: To save the future of your code using bootstrap, don't use JQuery.. bootstrap already dropped JQuery for pure JavaScript in the latest version and this is a good development.. |
Re: How do I access jQuery and bootstrap on local host? (solved) by lanibi(f): 9:50am On Apr 07, 2021 |
KennyFranklin:I'm actually having issues with bootstrap mobile responsiveness as well. The view on laptop is okay. Also, when i view using visual studio code editor on my phone, it is responsive but when i view on my phone using (tiny web server) to host, it is not responsive but instead show as if it's on a laptop. This is getting me frustrated. Please what am i doing wrong? |
Re: How do I access jQuery and bootstrap on local host? (solved) by Karleb(m): 10:34am On Apr 07, 2021 |
It seems I shall do a tutorial on how to use bootstrap since many people are not getting it. |
Re: How do I access jQuery and bootstrap on local host? (solved) by Rictech: 11:39am On Apr 07, 2021 |
Karleb: Abeg do oo and mention me biko |
Re: How do I access jQuery and bootstrap on local host? (solved) by lanibi(f): 1:04pm On Apr 07, 2021 |
Karleb: Patiently waiting for the video but please can you help me attend to this question below. I'm actually having issues with bootstrap mobile responsiveness as well. The view on laptop is okay. Also, when i view using visual studio code editor on my phone, it is responsive but when i view on my phone browser using (tiny web server) to host, it is not responsive but instead show as if it's on a laptop. This is getting me frustrated. Please what am i doing wrong? |
Re: How do I access jQuery and bootstrap on local host? (solved) by Karleb(m): 4:25pm On Apr 07, 2021 |
Actually I can't do a video tutorial now. But I wrote an article on my blog. Check it out. Also, there is a link to the github repository below the article. If you don't understand anything, do ask. https://karleb.hashnode.dev/how-to-use-bootstrap-offline @squash47 @Rictech 1 Like |
Re: How do I access jQuery and bootstrap on local host? (solved) by Karleb(m): 4:28pm On Apr 07, 2021 |
lanibi: Maybe it because you are not adding a meta tag to the head tag of the html file. Add this meta tag to the head tag and tell me if there is any difference. <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
Re: How do I access jQuery and bootstrap on local host? (solved) by lanibi(f): 5:29pm On Apr 07, 2021 |
Karleb:Thank you. It's now working fine. Your response made me realize that I used <meta type="viewport" content="width=device-width, initial-scale=1.0"> Instead of <meta name="viewport" content="width=device-width, initial-scale=1.0"> Thank you very much. I'm so happy. But one more question, why won't the CSS apply when I view in my browser without hosting locally on tiny web server? It is only displaying the html files. |
Re: How do I access jQuery and bootstrap on local host? (solved) by Karleb(m): 5:51pm On Apr 07, 2021 |
lanibi: I don't know. Maybe, you're using a CDN and you're not connected to internet on your PC. There are a lot of possible reasons. |
Re: How do I access jQuery and bootstrap on local host? (solved) by squash47(m): 5:55pm On Apr 07, 2021 |
Karleb: thanks man. I have solved the problem. I just figured it's best if I used the regular Google api link. and it worked. meanwhile, your website is so sweet. it doesn't look like a WordPress hosted site. |
Re: How do I access jQuery and bootstrap on local host? (solved) by Karleb(m): 6:03pm On Apr 07, 2021 |
squash47: My site? It's a blog I created off hashnode. You can create your own blog with hashnode if you want. TLDR: I did not code that blog. |
Re: How do I access jQuery and bootstrap on local host? (solved) by squash47(m): 6:08pm On Apr 07, 2021 |
Karleb: oh, ok thanks. |
Re: How do I access jQuery and bootstrap on local host? (solved) by RenaissanceGuy: 2:12pm On Apr 12, 2021 |
squash47:Copy the code and paste on an empty JS file in an editor and then save it as jquery.js or any other appropriate name you like. Finally, reference it in your HTML file and you're good to go. |
(1) (Reply)
Rate My First Simple App / Suggest Affordable And Quality Laptops I Can Use For Programming. / What Do You Think About This Bubble Sort Method, Is It Efficient?
(Go Up)
Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health religion celebs tv-movies music-radio literature webmasters programming techmarket Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 39 |