maanas anand
@maanasanand2000
Followers
110
Following
513
Media
91
Statuses
942
Front End Dev | Passionate about crafting beautiful user experiences with React.js | ✨JavaScript enthusiast
India
Joined December 2015
Just check out my insta page for tips and tricks related to coding ! https://t.co/UfsAhgnInk
instagram.com
0
1
2
Just check out my insta page for tips and tricks related to coding ! https://t.co/UfsAhgnInk
instagram.com
0
1
2
@Meesho_Official @meesho_support its been 4 days and i haven’t received any update on my order. Its been more than a month and unacceptable !
0
1
1
@Meesho_Official @meesho_support its been 4 days and i haven’t received any update on my order. Its been more than a month and unacceptable !
0
1
1
@Meesho_Official @meesho_support This is unacceptable — my order [Order ID: 193705572243377857] delivery has been delayed repeatedly with no proper communication, even after raising multiple complaints.Please resolve this immediately.
5
1
0
@AJIOLife This is unacceptable — my order [Order ID: FN3442602136] delivery has been delayed repeatedly with no proper communication. Please resolve this immediately.
3
1
1
Here are the details of the booking: •Passenger Name: RASHI ANAND •Booking Reference (PNR): KCTQHZ
0
0
0
🚀 CSS Performance Tip Deeply nested & complex selectors slow down rendering! Optimize your CSS: ❌ .parent .child .nav-item {} (Slow) ✅ .nav-item {} (Fast) Avoid: 🔹 * {} (Universal selector) 🔹 input[type="text"] {} (Attribute selector) 🔹 div:nth-child(n) {} (Expensive)
0
0
1
Use Cases: ✅ Live text editing ✅ In-browser note-taking apps ✅ WYSIWYG editors Bonus Tip: Disable pasting unwanted content with JavaScript! document.querySelector("div").addEventListener("paste", e => e.preventDefault()); #HTML #JavaScript #WebDev
0
0
2
How to Use It ? <div contenteditable="true">Click here to edit me!</div> How It Works: •When contenteditable="true" is added, the element becomes interactive. •Users can type, delete, and modify the text directly. •Works on <div>, <p>, <span>, and more!
1
0
2
🔥 Did you know? You can make any HTML element editable with just one attribute! The contenteditable attribute allows users to edit text inside an element, just like an input field—no JavaScript needed!
1
0
2
HTML 🧵
🔍 Did you know? HTML has a native spellchecker! Just add spellcheck="true" to a <textarea> or <input> field, and the browser will handle spelling corrections automatically. No JS needed. Try it out: <textarea spellcheck=“true”></textarea> #HTML #WebDevelopment #Coding
0
0
3
HTML 🧵
🔍 Did you know? HTML has a native spellchecker! Just add spellcheck="true" to a <textarea> or <input> field, and the browser will handle spelling corrections automatically. No JS needed. Try it out: <textarea spellcheck=“true”></textarea> #HTML #WebDevelopment #Coding
0
0
2