jQuery Articles

Page 5 of 42

What is the difference between jQuery and JavaScript?

Kiran Kumar Panigrahi
Kiran Kumar Panigrahi
Updated on 15-Mar-2026 2K+ Views

Both JavaScript and jQuery serve the same overarching objective of making webpages more interactive and dynamic. They give websites a sense of vibrancy. People may ask why there is a need for two distinct concepts if they serve the same function. Read through this article to find out how jQuery differs from JavaScript. What is JavaScript? JavaScript is a lightweight programming language that is used most often as a component of webpages. Its webpage implementations enable client-side script to interact with the user and create dynamic sites. It is a programming language that is interpreted and can handle ...

Read More

How to create an Edit icon using jQuery Mobile

Aman Gupta
Aman Gupta
Updated on 15-Mar-2026 325 Views

jQuery Mobile provides a rich icon library that can be easily integrated into web applications. The edit icon is particularly useful for applications with CRUD operations, allowing users to modify existing content. This icon can be created using the data-icon attribute with the value "edit". Syntax Edit Edit jQuery Mobile CDN Links Add these CDN links to your HTML document's head section − Example 1: Basic Edit Icon The following example demonstrates how to create a basic edit icon using jQuery Mobile − ...

Read More

How to create a dynamic HTML pages

Aman Gupta
Aman Gupta
Updated on 15-Mar-2026 6K+ Views

Dynamic HTML pages are web pages that can change their content, appearance, or behavior based on user interactions or other conditions. Unlike static pages that display fixed content, dynamic pages respond to user input and can modify themselves in real-time using JavaScript and DOM manipulation. Syntax /* Dynamic styling with JavaScript */ element.style.property = "value"; document.getElementById("elementId").style.backgroundColor = "color"; Key Components of Dynamic Pages Dynamic pages typically combine HTML structure, CSS styling, and JavaScript functionality to create interactive experiences. The main components include − HTML Elements − Provide the structure and content containers ...

Read More

How to create a Drawing Effect Animation using CSS

Aman Gupta
Aman Gupta
Updated on 15-Mar-2026 892 Views

CSS drawing effect animation creates visually appealing illustrations that appear to be drawn in real-time. This effect is achieved using SVG paths combined with CSS animations, particularly leveraging stroke-dasharray and stroke-dashoffset properties. Syntax .path { stroke-dasharray: length; stroke-dashoffset: length; animation: name duration timing-function fill-mode; } @keyframes name { to { stroke-dashoffset: 0; } } Method 1: Drawing Shape Animation The following example creates a heart ...

Read More

How to eliminate close button from jQuery UI dialog box using CSS?

Riya Kumari
Riya Kumari
Updated on 15-Mar-2026 2K+ Views

The CSS display: none property can be used to eliminate the close button from jQuery UI dialog boxes. This is useful when you want to force users to interact with the dialog content instead of simply closing it. Syntax .ui-dialog-titlebar-close { display: none; } jQuery UI Dialog Box Overview The jQuery UI dialog() method creates a modal dialog window that floats above the page content. By default, it includes a close button (×) in the title bar that allows users to close the dialog. Basic Dialog Syntax ...

Read More

How to apply CSS style using jQuery?

Dishebh Bhayana
Dishebh Bhayana
Updated on 15-Mar-2026 7K+ Views

We can use jQuery's .css() method to apply CSS styles to HTML elements dynamically. jQuery is a JavaScript library that simplifies DOM manipulation and allows us to add interactivity and modify CSS styles of elements programmatically. Syntax $(selector).css(property, value) OR $(selector).css({ property: value, property: value, ... }) The jQuery css() method accepts either a single property-value pair as separate arguments, or an object containing multiple CSS properties and their values. Note: To run these examples, you need to include the jQuery library in your HTML file using a CDN ...

Read More

Differences between Bootstrap and JQuery UI

Mahesh Parahar
Mahesh Parahar
Updated on 14-Mar-2026 1K+ Views

Both Bootstrap and jQuery UI are popular front-end tools used in web development. Bootstrap is a CSS framework focused on layout, design, and responsiveness. jQuery UI is a JavaScript library built on top of jQuery, focused on adding interactive widgets and effects to web pages. Bootstrap Bootstrap is a front-end CSS framework originally developed by Twitter. It provides pre-built CSS classes and components (grids, buttons, navbars, modals, etc.) for building responsive, mobile-first websites quickly. Bootstrap uses HTML, CSS, JavaScript, and preprocessors like LESS and SASS. Example The following example shows a responsive Bootstrap layout with a ...

Read More

nLoad and unload a table in SAP HANA using SQL query

SAP Developer
SAP Developer
Updated on 13-Mar-2026 2K+ Views

In SAP HANA, it is possible to manually load and unload individual tables and table columns for memory management purposes. You can perform loading of table to precisely measure the total or "worst case" amount of memory used by a particular table. A table is unloaded from database to actively free up memory space. Basic Load and Unload Syntax You can use the following SQL queries to perform load/unload operations on tables − LOAD UNLOAD Loading a Table To load a specific ...

Read More

How to check if onClick exists on element in jQuery?

ARPIT ANAND
ARPIT ANAND
Updated on 13-Mar-2026 864 Views

In jQuery, you can check if an onClick event handler exists on an element by accessing the events data stored internally by jQuery. This is useful when you need to verify if event listeners are attached before adding or removing them. Checking for Click Events Using $.data() The most reliable way to check for existing click events is to use jQuery's $.data() method to access the events object. Here's how you can do it − Check onClick Events ...

Read More

How to check if event exists on element in jQuery?

Kristi Castro
Kristi Castro
Updated on 13-Mar-2026 5K+ Views

To check if event exists on element in jQuery, you need to examine the existing events bound to that element. jQuery provides methods to access the event data stored internally for DOM elements. Here, I have set a div element − This is demo text. Click here! When you click the div, an alert is generated. To check if events exist on this element, we use $._data() method to access the internal event data and verify if any events are bound to the element. $("#demo").click(function() { alert("Does ...

Read More
Showing 41–50 of 413 articles
« Prev 1 3 4 5 6 7 42 Next »
Advertisements