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


3 answers
38 views
0
How to add classes in jQuery to elements added in JavaScript

What should I do if I click on the added element after adding the element in JavaScript and jQuery gives me a class?I'm having a hard time because the following code doesn't work.HTML<h1>Test<...

2 years ago

3 answers
62 views
0
How to use the ons-switch

I am studying programming at Monaca Cloud IDE.I tried to change the contents of the P tag using the ons-switch method isChecked by referring to the monaca official guidebook HTML5 hybrid app developme...

2 years ago

1 answers
22 views
0
I want to hide the button after adding my name and nickname three times, and I want to make it impossible

I am learning javascript.I want to hide the button after adding the name and nickname three times, and not add it after that.I have made it impossible to add it after the third time, but I have not be...

2 years ago

1 answers
25 views
0
Please tell me how to get it in the form of JSON on API fetch.

In the case of text().then(), the string can be retrieved successfully, but when I try to retrieve it with data, the following error appears:I'd like to loop with the JSON I got and make an id price t...

2 years ago

1 answers
42 views
0
I want to write a code that retrieves an element in iframe and adds css when clicked.

I'd like to get an element in iframe and write the code where z-index:1 is added to the iframe where the element was clicked. There was no change in the code below.Please let me know.<iframe id=Hel...

2 years ago

1 answers
50 views
0
In the c#ASP MVC5, the JS file is arranged in an arbitrary folder and used in the cshtml file.

Suppose you have the following folder configuration:Any folder name 1 

2 years ago

1 answers
33 views
0
How to write variables in JavaScript variable substitutions

Sorry for the rudimentary question.I would like to send and receive values between html files, but there are various restrictions and I can't use webstorage and cookies, so I decided to attach paramet...

2 years ago

1 answers
96 views
0
I want to delete id attribute of element

I have a question about deleting attributes.Below is an html statement.I'd like to delete the id=newsite in the tag using javascript, what should I do?I look forward to your kind cooperation.menu.html...

2 years ago

2 answers
93 views
0
Obtain HTML from other sites via ajax

I want to use ajax to get Html from other sites, but an error occurs in the cross domain.I thought I could get it with jsonp, so I tried using the code below.$.ajax({ url: 'https://hoge.jp', dataType:...

2 years ago

2 answers
38 views
0
What is the internal processing of the reference delivery?

I don't understand why the reference point for both list2 and list2 has changed with the code below.Note: I am not familiar with C#.private void TestMethod(ref List<String>list2){list2 = new Lis...

2 years ago
« - 66 - »

© 2024 OneMinuteCode. All rights reserved.