javascript tag

JavaScript (/ˈdʒɑːvəskrɪpt/), often abbreviated JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for web page behavior, often incorporating third-party libraries. All major web browsers have a dedicated JavaScript engine to execute the code on users' devices.

JavaScript is a high-level, often just-in-time compiled language that conforms to the ECMAScript standard. It has dynamic typing, prototype-based object-orientation, and first-class functions. It is multi-paradigm, supporting event-driven, functional, and imperative programming styles. It has application programming interfaces (APIs) for working with text, dates, regular expressions, standard data structures, and the Document Object Model (DOM).

The ECMAScript standard does not include any input/output (I/O), such as networking, storage, or graphics facilities. In practice, the web browser or other runtime system provides JavaScript APIs for I/O.

JavaScript engines were originally used only in web browsers, but are now core components of some servers and a variety of applications. Two of the most popular runtime systems for this usage are Node.js and Deno.

Although Java and JavaScript are similar in name, syntax, and respective standard libraries, the two languages are distinct and differ greatly in design.

Reference: WIKIPEDIA

1427 questions


1 answers
80 views
0
I want to use Sortable in the jQuery UI to get information about the elements even after the li elements are sorted.

I am currently learning programming while creating a Weba application.We use Sortable in jQuery to sort li elements.The source code below is the code that drags the elements to sort them arbitrarily a...


1 answers
36 views
0
I have a question about carousel (slider).

I created a slider, but when I click .link (click to fly all at once) where it does not change (current===$(this).attr(role)), .left or .right that should have been hidden() is displayed.Therefore, I ...

2 years ago

1 answers
27 views
0
I want to format Date YYYYY-MM-DD, but getFullYear does not exist.

I would like the date to be in YYYY-MM-DD format.It is said that getFullYear does not exist.error messages:Uncaught TypeError:date.getFullYear is not a function at formatDatehappenssource code:functio...

2 years ago

1 answers
104 views
0
When I tried to exclude resources that prevented rendering in WordPress, I attached the defer attribute to the script tag, but js stopped working.

In order to cope with the improvement of page speed on the site managed by WordPress, there was a request to exclude resources that prevented rendering, so I decided to add the defer attribute to the ...

2 years ago

1 answers
28 views
0
About Deleting Unused JavaScripts

As measured by PageSpeed Insights, Remove unused JavaScript to reduce data trafficSo, there are about 10 codes like the one below.URL/js/vendor.js?version=96be8d4…&env=production(cdn.blog.st-haten...

2 years ago

1 answers
155 views
0
I want to display the radar chart in inline SVG.

I put the following code in the html file, but the radar chart is not displayed.Could you please let me know if you know the cause?Code Source: Create a radar chart using Inline SVG -- Kathry Technolo...

2 years ago

1 answers
27 views
0
About Deleting Unused JavaScripts

As measured by PageSpeed Insights, Remove unused JavaScript to reduce data trafficSo, there are about 10 codes like the one below.URL/js/vendor.js?version=96be8d4…&env=production(cdn.blog.st-haten...

2 years ago

1 answers
43 views
0
getElementById results to null: Uncaught TypeError: Cannot read property 'getAttribute' of null

Uncaught TypeError: Cannot read property 'getAttribute' of nullThe error line is shown in the third line of this code.Code vara=param.getAttribute(a);varb = document.getElementById(a);varc_class = b.g...

2 years ago

1 answers
54 views
0
Looking for a fast table display library in Javascript/jQuery

In the 6 Column x 400 Row table, Ajax is trying to update the data every 2 seconds.The number of updates at once is uncertain, but I think 3 Column x 50 Row is the average.I implemented it using waTab...

2 years ago

1 answers
65 views
0
When you draw multiple circles on Google Maps, you want to display the map only where the circles overlap.

I have a question about Google Maps API.As the title says, I would like to display the map only where the circles overlap.To explain in detail, the entire map is painted black with opacity of 1I will ...

2 years ago
« - 46 - »

© 2024 OneMinuteCode. All rights reserved.