Mohit Panchasara has Published 67 Articles

How to place Font Awesome icon to input field?

Mohit Panchasara

Mohit Panchasara

Updated on 26-Jul-2023 11:56:33

4K+ Views

In many cases, developers require to place an icon inside the text input or particular HTML element. For example, we are creating a form containing multiple inputs. If we put the icon related to the form input field inside the input, we can create a better UI and attractive design ... Read More

How to perform jQuery Callback after submitting the form?

Mohit Panchasara

Mohit Panchasara

Updated on 26-Jul-2023 11:40:03

3K+ Views

Nowadays, every website contains at least a single form, such as a contact form, application form, etc. It is also required to notify users when the form is submitted successfully or with errors so that users can take action again. In JQuery, we can use the submit() method to call ... Read More

How to perform a real time search and filter on a HTML table?

Mohit Panchasara

Mohit Panchasara

Updated on 26-Jul-2023 11:35:12

2K+ Views

When developers develop a real-time web application, they need to deal with a large amount of data. For example, we have listed 1000 product data in the table format on the web page. If users want to find any particular product from the table, they need to scan the whole ... Read More

What is CSS sprites and how to implement them on a page?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:49:07

231 Views

What are Sprites in CSS? In CSS, sprites are techniques used to which we can use to decrease the number of HTTP requests by the web browser. In this technique, we require to combine multiple images in a single image. After that, we can set the single image for every ... Read More

What is CSS Flexbox?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:45:16

184 Views

As a beginner developer, learning about CSS flexbox is important. It also helps to make the responsive web design easy by optimizing the spaces of the element. The CSS flexbox is a layout model that we can use to arrange the child items better. It also changes the flex items' ... Read More

What are the real world usage of CSS with SVG?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:36:51

160 Views

Developers use CSS to style the web page's content and represent it properly. It can be used to make any content attractive. The full form of the SVG is the scalable vector image. The SVG is one type of image like a jpg or png. The jpg or png are ... Read More

What are the Materialize Classes of Dropdowns?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:35:00

277 Views

Materialize is a front-end development framework that developers can use to style web pages, and it follows Google’s material design guidelines. It contains the different HTML components, which are pre-designed with CSS and pre-functional with JavaScript, and one of them is the dropdown. The dropdown is useful whenever developers want ... Read More

How to switch between multiple CSS stylesheets using JavaScript?

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 17:11:52

2K+ Views

In this tutorial, we will learn to switch between multiple CSS stylesheets using JavaScript. Have you ever thought that when you toggle the theme of TutorialsPoint’s website, how it changes the CSS of the whole website? Here is a simple answer. When the user presses the button, it switches the ... Read More

Various tricks for :before pseudo elements using position property in CSS

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 16:56:28

867 Views

Generally, we add content to the web page using HTML and style the content using CSS. The CSS contains some pseudo-selectors, such as ‘:before’, and we can use it to add content to the web page before any HTML element. Sometimes, developers don’t want to put the content before the ... Read More

Logical Properties in CSS

Mohit Panchasara

Mohit Panchasara

Updated on 03-May-2023 16:27:07

325 Views

In CSS, logical properties allow developers to define the style based on the logical structure of the web page rather than the physical layout. It means we can apply the CSS according to the text direction or content flow. Mainly logical properties are used to set the HTML element's margin, ... Read More

Advertisements