Does the free server has Ajax and bootstrap library preloaded?
Hello.
Please do not hijack others’ topics, and create your own instead.
As for your question, I don’t think so.
No, but I recommend using jsDelivr CDN.
Below are the links for Bootstrap 5.1.3 and jQuery 3.6.
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css
https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
AJAX is a web technology, not a library. It’s built into browsers, not by servers or websites.
Bootstrap is a CSS/Javascript framework. It needs to be integrated into the HTML code of your website so it can be executed in the browser. Bootstrap doesn’t run on the server.
And we just provide a web hosting account. It’s a blank canvas where you can build your website using whatever libraries and frameworks you want. We’re not going to force Bootstrap on anyone, and I don’t even know how we would do that.
I also need to mention that fetch()
is the newer technology that you will likely almost always use over AJAX.
AJAX, while providing differences that some could see as benefits, has been mostly overshadowed by the fetch API, which is almost always used nowadays. I should also note that the server itself does not hold AJAX, rather the client’s computer has it loaded. AJAX is not on the server-side, it is on the client-side. Therefore, it cannot be preloaded.
As for bootstrap, I do not know, as I am not well-educated about those topics. However, Admin covered that, so I trust his knowledge to be true.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.