Smooth Modal Popup Plugin with jQuery and CSS3 – needPopup: 

Modal popups are used pretty frequently on the web. Some popular uses of them include driving newsletter sign ups, displaying notifications/alerts, and handling register and login forms.needPopup is a lightweight and cross-browser jQuery plugin which allows to display a responsive, nice clean modal popup with CSS3 powered animations on our web site.How to use it:1.… Continue reading Smooth Modal Popup Plugin with jQuery and CSS3 – needPopup: 

Title: How to Use getTime() to Generate Timestamps in JS

In my previous task i used this method. In JavaScript, timestamps are usually associated with Unix time. And there are different methods for generating such timestamps. var timestamp = new Date().getTime(); console.log(timestamp)// 1660926192826 In the example above, we created a new Date() object and stored it in a timestamp variable. We also attached the getTime()… Continue reading Title: How to Use getTime() to Generate Timestamps in JS

Media queries with j-query using match media.

Media Query in JQuery: As you know that Media Query was created in CSS. It is used to create responsive web pages. Means that it can display the web contents & layouts in different size of devices with proper format. So, It is widely used to create a user-friendly & mobile-friendly website.In most cases, developers need… Continue reading Media queries with j-query using match media.

Disable button if specific input fields in steps are empty.

When we create new form , there input text fields  and click  button will be in it . In that form disable the button if specific ( mandatory)  input fields are empty. After filling  the input   text   fields the click button work or enabled . Otherwise it won’t work .  For changes we… Continue reading Disable button if specific input fields in steps are empty.