How to create Responsive Accordion in HTML CSS & JavaScript

  Рет қаралды 30,970

CodingLab

CodingLab

Күн бұрын

Пікірлер: 46
@nilamrakholiya5650
@nilamrakholiya5650 2 жыл бұрын
Thank you for this tutorial, I am searching for alternate open-close accordion logic and you provide exact same concept. thanks
@CodingLabYT
@CodingLabYT 2 жыл бұрын
Glad it was helpful!
@j_u_d_y3041
@j_u_d_y3041 Жыл бұрын
Wow~This is the ultimate accordion tutorial that I need! Thank you so much for sharing the process!
@RobiulIslam-dn9mm
@RobiulIslam-dn9mm Жыл бұрын
Thank you. I badly needed this and after searching so many places, I found it at last.
@redaloui
@redaloui Жыл бұрын
Awesome, I hope you gather every sniper in one ui kit, or create ur own html template will love to buy it. Just focus not to deal heavily on javascript.
@CodingLabYT
@CodingLabYT Жыл бұрын
I will try my best
@deekshithpoojary262
@deekshithpoojary262 Жыл бұрын
MMMMM Finally i got the perfect FAQ that I was looking from last 2 days
@programmermobile5413
@programmermobile5413 2 жыл бұрын
I really thank you very much for providing the source code so I can be inspired
@CodingLabYT
@CodingLabYT 2 жыл бұрын
No worries!, t will be uploaded soon.
@randabadawy4170
@randabadawy4170 2 жыл бұрын
great job , this tutorial was usful to me . thanks
@CodingLabYT
@CodingLabYT 2 жыл бұрын
Glad it helped
@codingcinemax
@codingcinemax 2 жыл бұрын
Amazing Tutorial 👌👌
@CodingLabYT
@CodingLabYT Жыл бұрын
Thank you! Cheers!
@64_bit_coding
@64_bit_coding 2 жыл бұрын
You're so awesome!
@CodingLabYT
@CodingLabYT 2 жыл бұрын
You too!!
@BilalMohammed1988
@BilalMohammed1988 Жыл бұрын
Can you explain what do you mean by this "if (index1 != index2){ }" i have a confusion here.
@AboudASalam
@AboudASalam Жыл бұрын
the second forEach (in removeOpen function) will loop through all the accordions and by using the index2 we get the index of each accordion so we can use this condition and compare both the indexes (index1 and index2) to remove the class "open" from all accordions and reseting the height of each accordion to 0 except for the one that matches index1 (which we click on) to have one accordion opened for each click. if u still don't get it , open ur code studio and try it urself with printing both indexes in the console so u understand what do they stand for
@ianxven
@ianxven Жыл бұрын
thanks man, this helps alot
@rayforever
@rayforever 2 жыл бұрын
Can you do a big project like cloud drive website just like gdrive or mega drive , your chatting website was awesome , and also a simple OTP verification page too Yours sincerely Subscriber and supporter
@aekungkuntorpon7057
@aekungkuntorpon7057 2 жыл бұрын
Thank you for this video 💯
@CodingLabYT
@CodingLabYT 2 жыл бұрын
My pleasure!
@ignatjmudi8754
@ignatjmudi8754 10 ай бұрын
Bravo!!!!!!
@siva5042
@siva5042 2 жыл бұрын
Please do voice over it will be more understandable
@davymaro
@davymaro 2 жыл бұрын
Gracious, I cant find the sourcodes for downloading
@CodingLabYT
@CodingLabYT 2 жыл бұрын
It will be uploaded soon.
@ritik_p_
@ritik_p_ 2 жыл бұрын
Great tutorial! Subscribed! Will the source code be up soon?
@CodingLabYT
@CodingLabYT 2 жыл бұрын
Now Link is available.
@64_bit_coding
@64_bit_coding 2 жыл бұрын
You should do custom context menu
@RealCatDe
@RealCatDe 2 жыл бұрын
Nice video
@CodingLabYT
@CodingLabYT 2 жыл бұрын
Thanks a ton
@RealCatDe
@RealCatDe 2 жыл бұрын
@@CodingLabYT np can you in the next video make login/sign in form with database?
@Henry_Nunez
@Henry_Nunez 2 жыл бұрын
Gracias 👉🔔
@muygalan
@muygalan 2 жыл бұрын
Is it possible to embed an into this?
@musuhabadi2534
@musuhabadi2534 Жыл бұрын
your line 4 on js, you missed the dot (".header") . But why its still working ??
@CodingLabYT
@CodingLabYT Жыл бұрын
I have selected header tag.
@tasneemayham974
@tasneemayham974 9 ай бұрын
Guys, does anyone know how to add a transition to the plus and minus to rotate? I tried, but couldn't figure it out. Thanks for any help!!
@DarkaNight123
@DarkaNight123 9 ай бұрын
Tenía un problema con que las opciones del acordeón no se abrían al tamaño del contenido. Lo pude solucionar con lo siguiente: description.style.height = description.scrollHeight + "px" ;
@Архив-в3ц
@Архив-в3ц 11 ай бұрын
16:08
@cgianimationtv1828
@cgianimationtv1828 2 жыл бұрын
please 🙏🥺 code entertainment website front page layout and entertainment website single page ...thanks 👍
@hasibulhossainemon
@hasibulhossainemon Жыл бұрын
want this code
@ClashRoyale-pt9zj
@ClashRoyale-pt9zj Жыл бұрын
muito bom
@tolgabrandt
@tolgabrandt 2 жыл бұрын
get bootstrap
@RianaBeaCPena
@RianaBeaCPena 2 жыл бұрын
Hello can you please help me on how to code this? Thanks! Write a JavaScript function to get the month name from a particular date. Test Data: °console.log(month_name(new Date("10/11/2009"))); °console.log(month_name(new Date("11/13/2014"))); Output : "October" "November"
@lifeiscrazy2146
@lifeiscrazy2146 Жыл бұрын
const accordionContent = document.querySelectorAll(".accordion-content"); accordionContent.forEach((item,index) => { let header = item.querySelector('header'); header.addEventListener("click", () =>{ item.classList.toggle("open"); let description = item.querySelector(".description"); if(item.classList.contains(open)){ description.style.height = '${description.scrollHeight}px'; }else{ description.style.height = "0px"; item.querySelector("react-icons/ai").classList.replace("AiFillPlusCircle","AiFillMinusCircle"); } removeOpen(index); }) console.log(header); }) function removeOpen(index1){ accordionContent.forEach((item2,index2) =>{ if(index1 != index2){ item2.classList.remove("open"); let des = item2.querySelector(".description"); des.style.height = "0px"; item.querySelector("react-icons/ai").classList.replace("AiFillPlusCircle","AiFillMinusCircle"); } }) }
Accordion (HTML, CSS and JavaScript)
27:46
Coding Journey
Рет қаралды 61 М.
JavaScript Accordion (Code-Along)
8:43
Treehouse
Рет қаралды 4,3 М.
The Singing Challenge #joker #Harriet Quinn
00:35
佐助与鸣人
Рет қаралды 30 МЛН
Trapped by the Machine, Saved by Kind Strangers! #shorts
00:21
Fabiosa Best Lifehacks
Рет қаралды 36 МЛН
这是自救的好办法 #路飞#海贼王
00:43
路飞与唐舞桐
Рет қаралды 123 МЛН
Osman Kalyoncu Sonu Üzücü Saddest Videos Dream Engine 275 #shorts
00:29
Draggable Circular Navigation Menu in HTML CSS & JavaScript
17:57
How to create an Accordion using CSS & Javascript
5:36
Online Tutorials
Рет қаралды 130 М.
«Осень». Самая большая загадка Windows XP
14:36
Девять десятых
Рет қаралды 1,1 МЛН
How to easily build an accordion using JavaScript, Html & CSS
5:39
How to Create an Accordion Using HTML CSS and JavaScript
18:55
OnlineITtuts Tutorials
Рет қаралды 7 М.
Animated accordion with plus minus icon using html css jquery
10:35
JavaScript Accordion Tutorial in Hindi / Urdu
18:17
Yahoo Baba
Рет қаралды 22 М.
Building an accordion with HTML, CSS & JS (Part 1)
1:28:38
Coder Coder
Рет қаралды 98 М.
The Singing Challenge #joker #Harriet Quinn
00:35
佐助与鸣人
Рет қаралды 30 МЛН