Is it possible to practice AJAX using the Brackets web editor with local files only? [closed] - javascript

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
What I'm ultimately trying to accomplish: Making a site that allows you to browse through videos and add/remove them from an AJAX-controlled playlist. So far, my website has only been created through Brackets using local web files, and I'm curious how much I'll need to change my work environment if I want to begin using AJAX with my website. I've never used AJAX before, if that isn't obvious....

You have to use a local server like WAMP (http://www.wampserver.com/en/), MAMP(https://www.mamp.info/en/), or LAMP

Related

Execute block of code when a local text file updates in JavaScript [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm wondering how I can execute a few lines of code in JavaScript when a local .txt file updates. Thanks!
Given that you've tagged this question html and html5: You can't. Browsers do not provide webpages with any API to monitor the local file system for changes.
You'd need a JS environment which does have access to the local file system to do this, for example: NodeJS, which has the fs.watch method.

What should I use to run HTML/CSS/JS code? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I've created a few simple HTML/CSS/JS games. This time a few friends and I are going to create another game that people can download from some website. We want to use HTML CSS and JS even though that is probably not the best option.
All the games I created before I've used Chrome to run them. Of course I can't just make people run my games with Chrome. So how should I run it?
You can try using Electron (http://electron.atom.io/). You can use it to build desktop apps using Html/Css/Js.

Default path of database in a bootstrap website? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
My Boss just gave me a website of his friend so the developer that build it was fired and i need to access the data base to change things.
The Website is developed using Bootstrap and I never used it Before where do I find the definition of the database connection help please.
Nowhere.
Bootstrap is a collection of CSS and (client-side) JavaScript.
It isn't a traditional, server-side MVC framework (or anything else that would fulfil a similar role) and doesn't do anything that would involve a database.
Bootstrap might be used in the output of a View from such a framework, but that's handled at a different level in the codebase.

Is there a function to gather the amount of memory used in a specific File Directory [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
If you can include Javascript so it automatically updates that would be awesome. I want it to gather the amount of space that is being used in directory /wy/ and display on the index.php file and automatically update whenever a file is added to file directory /wy/.
You cant achive this only with javascript as your tag implies. you may need to use any file APIs available. Better ways is to have a Server implementation for this and get the memory details from server using Ajax or any client-server communication techniques.

Create a mac and windows app that opens local html and javascript pages [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am having the hardest time heading this in the direction I want.
I want to create web apps that will open locally separate from a browser. The app needs to be able to access the internet for database stuff but I want the ability to be able to download and run extra javascript and html code from within the app on the user request.
What web views exist so that I can make this easy?
I think you might be looking for something like:
TideSDK
node-webkit
Adobe AIR
http://clintberry.com/2013/html5-apps-desktop-2013/ is a comparison of some of these and and other solutions.

Categories