Skip to content

Hide scroll and implement it with JS

I’m a beginner to HTML and JavaScript. I’m building a tabs bar, in which I want to have the option to scroll it horizontally, not with a traditional browser scroll, but with arrow buttons that I’ve created. Here is how my tabs bar looks like: This is the best I’ve managed to do: I mana…

What is meant as by an external source in JavaScript?

The ECMAScript language specification at section 4.4.2 which defines implementation-defined as: An implementation-defined facility is defined in whole or in part by an external source to this specification Now what exactly is meant here by an ‘external source’? Would an external source be considered s…

send blob to python flask and then save it

So I’m trying to make a website that record your voice, the problem is that when I send to a flask server the blob file or the blob url, my flask python code says that is no content while it is, how can I send the blob, so the server can save it as a file. and my python flask

In React Js Axios request getting CROS error

I used Axios for API, here is my code. I am getting CROS error. Answer You’ll need to enable CORS from your back-end service. From the image, it is clear that your front-end in running on localhost on port 3000 whereas your back-end or api service is running on port 8000 on localhost. So, enable CORS fr…