Mohit Panchasara has Published 87 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 are the classes to create responsive image & video in Materialize?

Mohit Panchasara

Mohit Panchasara

Updated on 14-Jul-2023 17:23:40

150 Views

The Materialize library allows developers to use pre-defined CSS classes and JavaScript methods to make a responsive web design. We can use the Materialize classes to customize the typography, add grids to the web page, and make responsive videos and images. It is always required to make images and videos ... Read More

What is the use of Mixins in LESS?

Mohit Panchasara

Mohit Panchasara

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

203 Views

IN LESS, mixins provide a way to group a set of CSS properties and reuse them across different rule sets in our stylesheet. When we include a mixin in a rule set, all of the CSS properties defined in the mixin are added to the rule set where the mixin ... Read More

What is the use of Escaping in LESS?

Mohit Panchasara

Mohit Panchasara

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

770 Views

In LESS, the "escaping" allows us to use any arbitrary string as a property or variable value. Sometimes, we may use special characters or symbols in our LESS code that can cause problems when the code is compiled. Escaping is a technique that helps prevent such issues by enclosing these ... 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

174 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

115 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

199 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

Advertisements