Lokesh Badavath has Published 102 Articles

How to understand JavaScript module pattern?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 12:05:07

140 Views

In this article we are going to learn how to understand JavaScript module pattern. The Module pattern is used to copy the concept of classes, so that we can store both public and private methods and variables inside a single object. Since JavaScript doesn’t support classes, similar to classes that ... Read More

How to iterate a JavaScript object's properties using jQuery?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 12:00:20

1K+ Views

In this article, we are going to learn how to iterate a JavaScript object’s properties using jQuery. The simplest way to iterate over an object with JavaScript is to use a for in loop. The for statement will iterate over the objects as an array, but the loop will send ... Read More

How to work with JavaScript Drag and drop for touch devices?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 11:54:51

4K+ Views

In this article, we are going to discuss how to work with JavaScript Drag and drop for touch devices in JavaScript. Using JavaScript, we can only drag an image and some text. To drag an image, we simply hold the mouse button down and then move it. To drag the ... Read More

How to secretly copy to clipboard JavaScript function in Chrome and Firefox?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 11:47:34

856 Views

In this article we are going to try how to secretly copy a JavaScript function to the clipboard. We use the copytext() method to secretly copy JavaScript function to the clipboard. These functions work on JavaScript console as well. To understand better let’s look into the examples one by one. ... Read More

How to create table rows & columns in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 10:59:27

18K+ Views

HTML tables allow us to arrange data into rows and columns on the web page. We use the tag, to create table in HTML. A table consist of rows and columns. Table heading, row and column and table data can be set using one or more , , and ... Read More

How to create table header in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 10:55:33

8K+ Views

To create table header in HTML, use the … tag. A table header tag is surrounded by the table row …. The tag is surrounded by the tag. A table consist of a rows and columns, which can be set using one or more , , and ... Read More

How to make an image responsive in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 10:43:28

5K+ Views

Responsive images will automatically adjust to the size of the screen and to the tab size. To make image responsive first we must add image to the web page using tag, then by using style sheet we can change the parameters of the image to make an image responsive ... Read More

How to create a link to send email in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 09:53:52

2K+ Views

We use HTML tag defines a hyperlink used to link web pages. The href attribute of the tag, which indicates the link's destination. Which provides us option to specify an email address. To create a link to send mail we use mailto:to specify email address inside href attribute ... Read More

How to create a bookmark link in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 09:50:45

11K+ Views

A bookmark is helpful when you want to remember the web page for future reference. You can access that bookmark at any time to view the web page again. We use HTML links to create bookmarks, so that we can jump to specific parts of a web page. Bookmarks can ... Read More

How to change the target of a link in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Nov-2022 09:27:11

8K+ Views

We use the target attribute of the … tag, to change the target value of the link. The target attribute can be used to open any link in a new tab, current tab and so on. _blank − link will open in a new tab. _self − link will ... Read More

Previous 1 ... 3 4 5 6 7 ... 11 Next
Advertisements