Trending questions in JQuery

0 votes
1 answer

How can I refresh a page with jQuery?

Use the JavaScript location. reload() Method You can simply ...READ MORE

Jun 10, 2022 in JQuery by gaurav
• 23,260 points
655 views
0 votes
1 answer

Downloading jQuery UI CSS from Google's CDN

The Google AJAX Libraries API, which includes ...READ MORE

Jun 1, 2022 in JQuery by Edureka
• 13,670 points
730 views
0 votes
1 answer

Logical calculation in Excel

Use the IF function, one of the ...READ MORE

Jun 9, 2022 in JQuery by gaurav
• 23,260 points
386 views
0 votes
1 answer

Scroll to the top of the page using JavaScript?

The scrollTo() method of the window Interface ...READ MORE

Jun 10, 2022 in JQuery by gaurav
• 23,260 points
347 views
0 votes
1 answer

Submit a form using jQuery

This method is a shortcut for .on( ...READ MORE

Jun 6, 2022 in JQuery by Edureka
• 13,670 points
484 views
0 votes
1 answer

Where are the source files on the Jquery.com website? I see no download link

Download Jquery by clicking on this link ...READ MORE

Jun 10, 2022 in JQuery by gaurav
• 23,260 points
326 views
0 votes
1 answer

difference between $ and $() in jQuery

JavaScript: It is a major scripting programming language ...READ MORE

Jun 10, 2022 in JQuery by rajatha
• 7,640 points
357 views
0 votes
1 answer

MS Excel TRUE/FALSE Formula Not Returning Expected Result

There are two main reasons you might ...READ MORE

Jun 10, 2022 in JQuery by gaurav
• 23,260 points
290 views
0 votes
1 answer

How to turn off Auto Refresh on "Stock Price" Data Type in Excel

How do you stop Excel from automatically ...READ MORE

Jun 9, 2022 in JQuery by gaurav
• 23,260 points
304 views
0 votes
1 answer

Calculate the number of days between a cell and today in excel?

Excel Formula to Calculate Number of Days ...READ MORE

Jun 9, 2022 in JQuery by gaurav
• 23,260 points
289 views
0 votes
1 answer

jquery easyupload plugin not uploading pdf files

In this case, we need to check upload_max_filesize and post_max_size. http://php.net/manual/en/features.file-upload.php <?php try ...READ MORE

Jun 3, 2022 in JQuery by Edureka
• 13,670 points
533 views
0 votes
0 answers

using for loop in jquery

$(document).ready(function() { $for(i=1;i<8;i++) ...READ MORE

Jun 6, 2022 in JQuery by Edureka
• 13,670 points
440 views
0 votes
0 answers

unset variable in php

I just read a PHP manual. that ...READ MORE

Jun 10, 2022 in JQuery by narikkadan
• 63,420 points
281 views
0 votes
1 answer

jQuery - Difficulty with copy-to-clipboard and a textbox

I think the problem is with your ...READ MORE

Jun 1, 2022 in JQuery by Edureka
• 13,670 points
604 views
0 votes
1 answer

Disable Sorting in excel

Go to the Home ribbon, click the ...READ MORE

Jun 9, 2022 in JQuery by gaurav
• 23,260 points
231 views
0 votes
1 answer

How do I assign jQuery slider handle values with their left or right edges, instead of their centers?

This is far from perfect yet it ...READ MORE

Jun 6, 2022 in JQuery by Edureka
• 13,670 points
336 views
0 votes
1 answer

jquery $.each() for objects

each(), which is used to iterate, exclusively, over ...READ MORE

Jun 6, 2022 in JQuery by Edureka
• 13,670 points
324 views
0 votes
0 answers

how do I create an array in jquery?

$(document).ready(function() { $("a").click(function() { ...READ MORE

Jun 6, 2022 in JQuery by Edureka
• 13,670 points
366 views
0 votes
1 answer

jQuery mobile: Enable Word Wrap in ListViews

A listview is coded as a simple ...READ MORE

Jun 6, 2022 in JQuery by Edureka
• 13,670 points
319 views
0 votes
1 answer

Ajax load issues with space in url

You should URL encode the message body ...READ MORE

Jun 10, 2022 in JQuery by gaurav
• 23,260 points
437 views
0 votes
1 answer

Adding attribute in jQuery

Set the width attribute of an image: $("button").click(function(){ ...READ MORE

Jun 1, 2022 in JQuery by Edureka
• 13,670 points
522 views
0 votes
1 answer

How do I select a sibling element using jQuery?

Use jQuery . siblings() to select the matching ...READ MORE

Jun 6, 2022 in JQuery by Edureka
• 13,670 points
286 views
0 votes
1 answer

Email validation using jQuery

You can use regular old javascript for ...READ MORE

Jun 3, 2022 in JQuery by Edureka
• 13,670 points
398 views
0 votes
1 answer

jQuery's .on() method combined with the submit event

You need to delegate event to the ...READ MORE

May 30, 2022 in JQuery by gaurav
• 23,260 points
578 views
0 votes
1 answer

JQuery opposite of extend (reduce objects)

There is no such function, but you ...READ MORE

Jun 2, 2022 in JQuery by Edureka
• 13,670 points
370 views
0 votes
1 answer

What is the difference between AJAX with JavaScript and jQuery?

JavaScript is a programming language. JQuery is ...READ MORE

May 30, 2022 in JQuery by gaurav
• 23,260 points
531 views
0 votes
0 answers

External API GET() request using jQuery

I am using the IMDb API v2.0 located here ...READ MORE

Jun 1, 2022 in JQuery by Edureka
• 13,670 points
379 views
0 votes
1 answer

jQuery.inArray(), how to use it right?

The jQuery inArray() method is used to find ...READ MORE

Jun 1, 2022 in JQuery by Edureka
• 13,670 points
338 views
0 votes
1 answer

External API GET() request using jQuery

url Type: String A string containing the URL to which ...READ MORE

Jun 3, 2022 in JQuery by Edureka
• 13,670 points
219 views
0 votes
1 answer

Smooth scroll without the use of jQuery

document. querySelector('your-element'). scrollIntoView({behavior: 'smooth'}); If you want to scroll top ...READ MORE

Jun 1, 2022 in JQuery by Edureka
• 13,670 points
299 views
0 votes
1 answer

Opposite to jQuery's .Closest (Top/Far-Most?)

.menu .sub - menu ...READ MORE

May 30, 2022 in JQuery by gaurav
• 23,260 points
454 views
0 votes
1 answer

Telerik UI controls vs client-side UI with jQuery

I've used Telerik and JQuery for years. ...READ MORE

Jun 1, 2022 in JQuery by Edureka
• 13,670 points
303 views
0 votes
1 answer

JQuery class selectors like $(.someClass) are case sensitive?

jQuery attribute value selectors are generally case-sensitive. ...READ MORE

May 30, 2022 in JQuery by gaurav
• 23,260 points
417 views
0 votes
1 answer

How can I Validate forms with jquery?

Then to define rules use simple syntax. ...READ MORE

Jun 1, 2022 in JQuery by Edureka
• 13,670 points
283 views
0 votes
1 answer

JQuery Difference between hide() and fadeOut() , show() and fadeIn()

Main difference between FadeIn, FadeOut vs hide, ...READ MORE

Jun 1, 2022 in JQuery by Edureka
• 13,670 points
282 views
0 votes
1 answer

Jquery resize image with a heart beat effect

This code should work  (function pulse(back) { $('#seventyfive img').animate( ...READ MORE

May 30, 2022 in JQuery by gaurav
• 23,260 points
418 views
0 votes
0 answers

How do I assign jQuery slider handle values with their left or right edges, instead of their centers?

I'm playing with jQuery UI, and I've ...READ MORE

Jun 2, 2022 in JQuery by Edureka
• 13,670 points
203 views
0 votes
0 answers

Email validation using jQuery

How can I use JQuery to validate ...READ MORE

May 21, 2022 in JQuery by Kichu
• 19,050 points
243 views
0 votes
1 answer

Difference between $(window).load() and $(document).ready() functions

To answer your question, the document.ready is ...READ MORE

Feb 23, 2022 in JQuery by Aditya
• 7,680 points
1,415 views
0 votes
1 answer

jQuery Event : Detect changes to the html/text of a div

Hello, If you don't want use timer and ...READ MORE

Nov 25, 2020 in JQuery by Niroj
• 82,880 points
19,220 views
0 votes
1 answer

How to Get Currently Selected Tab Index In jQuery UI Tabs?

Hello @kartik, If you need to get the ...READ MORE

Sep 10, 2020 in JQuery by Niroj
• 82,880 points
17,385 views
0 votes
1 answer

Uncaught Error: Bootstrap's JavaScript requires jQuery

Hello @kartik, You have provided wrong order for ...READ MORE

Apr 28, 2020 in JQuery by Niroj
• 82,880 points
22,476 views
0 votes
1 answer

How to make $.post() use contentType=application/json in jquery?

Hii, Try this: $.ajax({ url:url, type:"POST", ...READ MORE

Nov 24, 2020 in JQuery by Niroj
• 82,880 points
9,919 views
0 votes
1 answer

jQuery's .click - pass parameters to user function

Hello @kartik, You need to use an anonymous ...READ MORE

Nov 25, 2020 in JQuery by Niroj
• 82,880 points
8,286 views
0 votes
1 answer

Error:Laravel Method paginate does not exist

Hello @kartik, Try this: Dispatch::all() => Returns a Collection Dispatch::all()->where() => Returns a Collection Dispatch::where() => ...READ MORE

Dec 2, 2020 in JQuery by Niroj
• 82,880 points
7,127 views
0 votes
1 answer

Error:jQuery scrollTop not working in Chrome but working in Firefox

Hello @kartik, If your CSS html element has the following overflow markup, scrollTop will ...READ MORE

May 29, 2020 in JQuery by Niroj
• 82,880 points
14,109 views
0 votes
1 answer

How to change options of <select> with jQuery?

Hello @kartik, You can remove the existing options ...READ MORE

Nov 25, 2020 in JQuery by Niroj
• 82,880 points
5,923 views
0 votes
1 answer

How to set radio option checked onload with jQuery?

Hii, Say you had radio buttons like these, ...READ MORE

Nov 24, 2020 in JQuery by Niroj
• 82,880 points
5,395 views
0 votes
1 answer

Uncaught TypeError: Cannot read property 'msie' of undefined - jQuery tools

Hello, Use the following script tag in your ...READ MORE

Apr 28, 2020 in JQuery by Niroj
• 82,880 points
14,323 views
0 votes
1 answer

How to find a parent with a known class in jQuery?

Hello @kartik, Assuming that this is .d, you can write $(this).closest('.a'); The closest method returns the ...READ MORE

Oct 5, 2020 in JQuery by Niroj
• 82,880 points
6,590 views