Most viewed questions in JQuery

0 votes
1 answer

jQuery $( function() {} ) and $(document).ready the same?

So technically they are both the same. Not ...READ MORE

Jun 13, 2022 in JQuery by rajatha
• 7,680 points
508 views
0 votes
1 answer

How to shorten repeating code with html function and return tags in jquery

Firstly note that replace() only accepts two arguments, the ...READ MORE

Jun 15, 2022 in JQuery by rajatha
• 7,680 points
502 views
0 votes
0 answers

How can I upload files asynchronously with jQuery?

I would like to upload a file ...READ MORE

Jun 10, 2022 in JQuery by gaurav
• 23,260 points
500 views
0 votes
0 answers

jQuery add class .active on menu

I've got a problem. I want to add ...READ MORE

Jun 10, 2022 in JQuery by gaurav
• 23,260 points
499 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
494 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
467 views
0 votes
1 answer

How do I format date in jQuery datetimepicker?

“jquery datepicker format” Code Answer's $('#timePicker'). datetimepicker({ // dateFormat: ...READ MORE

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

How can I upload files asynchronously?

Hello @kartik, Using JavaScript code you can do it ...READ MORE

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

How to distinguish between left and right mouse click with jQuery

Using the mousedown() method: The mousedown() method in ...READ MORE

Jun 14, 2022 in JQuery by gaurav
• 23,260 points
449 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
446 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
446 views
0 votes
1 answer

How to change CSS using jQuery?

You can change CSS using the jQuery ...READ MORE

Jun 10, 2022 in JQuery by gaurav
• 23,260 points
443 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
441 views
0 votes
1 answer

jQuery .slideUp() and .slideDown() equivalent in Angular2

In order to create a custom slideUp/Down ...READ MORE

Jun 16, 2022 in JQuery by rajatha
• 7,680 points
439 views
0 votes
1 answer

jQuery Get Selected Option From Dropdown

For dropdown options you probably want something ...READ MORE

Jun 20, 2022 in JQuery by rajatha
• 7,680 points
430 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
428 views
0 votes
1 answer

Bootstrap throws Uncaught Error: Bootstrap's JavaScript requires jQuery

Try this Change the order of files it ...READ MORE

Jun 10, 2022 in JQuery by gaurav
• 23,260 points
412 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
406 views
0 votes
1 answer

How do I implement JQuery.noConflict() ?

You can of course still use jQuery, ...READ MORE

Jun 16, 2022 in JQuery by rajatha
• 7,680 points
405 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
396 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
387 views
0 votes
1 answer

How to get the children of the $(this) selector?

Hello @kartik, The jQuery constructor accepts a 2nd ...READ MORE

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

Trim to remove white space

The trim() method removes whitespace from both ...READ MORE

Jun 15, 2022 in JQuery by rajatha
• 7,680 points
382 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
382 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
373 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,680 points
364 views
0 votes
1 answer

jQuery/JavaScript to replace broken images

To replace broken images in JavaScript, the ...READ MORE

Jun 16, 2022 in JQuery by rajatha
• 7,680 points
360 views
0 votes
1 answer

How to get the size of the screen, current web page and browser window?

Hello @kartik, You can get the size of ...READ MORE

Sep 10, 2020 in JQuery by Niroj
• 82,880 points
356 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
355 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
353 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
346 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
341 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
328 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
324 views
0 votes
1 answer

How to build simple tabs with jQuery?

Create Tabs Using jQuery and CSS Create Tab: ...READ MORE

Jun 16, 2022 in JQuery by rajatha
• 7,680 points

edited Jun 16, 2022 by Hemant 319 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
311 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
311 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
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
303 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
298 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
293 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
292 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
290 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,700 points
287 views
0 votes
1 answer

How do I add options to a DropDownList using jQuery?

Without using any extra plugins, var myOptions = ...READ MORE

Jun 21, 2022 in JQuery by rajatha
• 7,680 points
281 views
0 votes
1 answer

Trim to remove white space

The trim() method removes whitespace from both ...READ MORE

Jun 14, 2022 in JQuery by rajatha
• 7,680 points
281 views
0 votes
1 answer

Is jQuery considered a language?

jQuery is not a programming language instead it ...READ MORE

Jun 17, 2022 in JQuery by rajatha
• 7,680 points
267 views
0 votes
1 answer

jQuery if checkbox is checked

for jQuery  if ($('input.checkbox_check').prop('checked')) { ...READ MORE

Jun 20, 2022 in JQuery by rajatha
• 7,680 points
265 views
0 votes
1 answer

Instagram jQuery Search not showing anything

The latest changes in Instagram has affected ...READ MORE

Jun 16, 2022 in JQuery by rajatha
• 7,680 points
255 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
244 views