script tag

1639 questions


2 answers
29 views
0
To process multiple cases in a switch statement in javascript at once

I want to process several values in one, but it doesn't work well because I wrote in the case. What should I do?function daysInMonth( month ){ switch(month){ case 2: return 28; break; case 4,6,9,11: r...

2 years ago

1 answers
121 views
0
I'm going to create an image gallery, and I'd like to ask you a question about thumbnail capacity and how to save it!

We are creating a website with a basic gallery structure that gathers thumbnail images and makes the image appear larger when you click on the thumbnail. Currently, thumbnails are imported from the sa...


1 answers
115 views
0
Can I move it according to the size of the CSS position window?

<div style=border: 1px solid #cccccc; width: 98%; height: 80%; margin: 10px;><div style=position: relative; border: 1px solid red; width: 50%; height: 50%; margin: 0 auto;> <img src=ht...


1 answers
17 views
0
I want to get text when I click on a specific area in HTml as follows.

The screen displays the following target1 target2 target3 target4Here's how it works.<div> target1 <span>target2</span> <span>target3</span> target4</div>When you c...

2 years ago

1 answers
143 views
0
Do you happen to know issues like JavaScript?

<script language=JavaScript> myTickets = new Array(); startPosArr = new Array(); endPosArr = new Array(); selItem; eee2 = 0; function setMyTicketList(){ alert(^^ : + eee2);}The following error...


1 answers
15 views
0
This is a JavaScript question

var num = 11;(num > 100) && num++;document.writeln (num: +num+<br/>); //value num: 11(num < 100) || num++;document.writeln (num: +num+<br/>);//value num: 11(num < 100) &am...

2 years ago

1 answers
104 views
0
[Lectures 1-23] Is there a language that can be used in html documents other than javascript?

I heard that <script type=> can specify the type and javascript is specified as the default value in lecture 1-23.As far as I know, I heard that HTML css javascript can handle only three things,...


1 answers
48 views
0
How do we make the hash value of SHA256 through CryptoJS equal to the hash value of SHA256 using Java Message Digest?

var result = ;var reader = new FileReader();reader.onload = function(event) { result = CryptoJS.SHA256(event.target.result).toString();};reader.readAsBinaryString(tempFile);The hash value of a file in...


3 answers
36 views
0
What is the least loaded method when using jquery?

1. Save directly to directory and declare<script src=/dir/jquery-1.10.2.js></script>2. Declaring http path calls<script src=http://code.jquery.com/jquery-1.10.2.js></script>Bef...

2 years ago

1 answers
115 views
0
What should I use as a shopping mall development language?

Hello, I am a student who has just studied the web in high school.I'm working on a project with my friends for this project, and I'm doing a 'shopping mall' with the development.The main development l...

« - 127 - »

© 2024 OneMinuteCode. All rights reserved.