
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
2K+ Views
We can use the JavaScript method "createElement" to create a new element. Then, we can use the method "appendChild" to add the element to a parent element on the HTML page. To position the element horizontally, we can use CSS styles such as "display:inline-block" or "float:left/right" on the newly created ... Read More

AmitDiwan
7K+ Views
We can add an active class to a custom list group item in Bootstrap 4 by using JavaScript or jQuery. This can be achieved by adding an onclick event to each list group item and then using the "addClass" method to add the active class to the item that was ... Read More

AmitDiwan
14K+ Views
To add a tooltip to a div using JavaScript, first create a function that will generate the tooltip content. Next, add an event listener to the div that will call the function and display the tooltip when the div is hovered over. Finally, use CSS to style the tooltip and ... Read More

AmitDiwan
597 Views
To add a line through to a canvas-type text using Fabric.js, you can use the "set('textDecoration', 'line-through')" method on the text object. This method allows you to set the textDecoration property of the text object to "line-through", which will add a line through the text. Finally, you need to call ... Read More

AmitDiwan
844 Views
We will learn how to implement multiple input checkbox. The checkbox input selector will have the following functionalities − Multiple options can be selected using the checkbox. Chosen options will be displayed as a separate list. Delete icon will be provided against each chosen option to uncheck / delete ... Read More

AmitDiwan
1K+ Views
In Backbone.js, views are typically associated with a model and have access to the model's data through the view's this.model property. To access the data of the model in a view, you can use the get() method on the model, passing in the name of the attribute you wish to ... Read More
How to Access element from Table using JavaScript?
AmitDiwan
Updated on 06-Feb-2023 11:20:03
12K+ Views
To access a element from a table using JavaScript, you can first use the document.getElementById() or document.getElementsByTagName() method to access the table element. Then, you can use the table's childNodes property to access the elements within the table. Our focus will be on changing the background color of ... Read More
AmitDiwan
Updated on 06-Feb-2023 11:13:46
573 Views
To accept all pending connection requests on LinkedIn using JavaScript, you would need to use the LinkedIn API and an automation tool. The script would need to navigate to the connection request page and loop through each request, clicking the accept button for each one. This is a very common ... Read More
AmitDiwan
Updated on 06-Feb-2023 11:10:40
309 Views
The focus of this article will be on what AJAX is, how it works in a nutshell, what makes it such a convenient yet powerful tool and how it is different from JavaScript libraries and JavaScript RunTime Environment. AJAX Introduction and History Ajax, short for Asynchronous JavaScript and XML, is ... Read More
AmitDiwan
Updated on 06-Feb-2023 11:09:20
3K+ Views
In this article we will be discussing how inheritance works in JavaScript and how you can make use of this OOPS characteristic inside the constructor function in JavaScript. We will also be touching a little upon the prototype object in JavaScript. Therefore, some prior knowledge on the same is ... Read More
Advertisements

AmitDiwan
12K+ Views
To access a element from a table using JavaScript, you can first use the document.getElementById() or document.getElementsByTagName() method to access the table element. Then, you can use the table's childNodes property to access the elements within the table. Our focus will be on changing the background color of ... Read More

AmitDiwan
573 Views
To accept all pending connection requests on LinkedIn using JavaScript, you would need to use the LinkedIn API and an automation tool. The script would need to navigate to the connection request page and loop through each request, clicking the accept button for each one. This is a very common ... Read More

AmitDiwan
309 Views
The focus of this article will be on what AJAX is, how it works in a nutshell, what makes it such a convenient yet powerful tool and how it is different from JavaScript libraries and JavaScript RunTime Environment. AJAX Introduction and History Ajax, short for Asynchronous JavaScript and XML, is ... Read More

AmitDiwan
3K+ Views
In this article we will be discussing how inheritance works in JavaScript and how you can make use of this OOPS characteristic inside the constructor function in JavaScript. We will also be touching a little upon the prototype object in JavaScript. Therefore, some prior knowledge on the same is ... Read More