• Problem with dinamic contect + url

    After adding function swipe, website stopped update dinamic content + url. This is code need update content: var default_content="";   $(document).ready(function(){         checkURL();     $('ul li a').click(function (e){               checkURL(this.hash);       });         default_content = $('#pageContent').html();             setInterval("checkURL()",250);     });   var lasturl="";   function checkURL(hash) {     if(!hash) hash=window.location.hash;         if(hash != lasturl)     {    
  • 1.10.0.min.js on cdn not avaliable

    Hi experts and support teams, I just realize http://code.jquery.com/jquery-1.10.0.min.js is a dead link? Any chance fixing it? Thanks so much, just used it in a production environment. Not sure if that is a good idea. Cheers, Josh
  • jquery-2.2.0 trows error @3649 (acceptData) when widget is called with namespace over a selector that has no match

    I am developing a framework of jquery widgets for a new project. They are created by the $.widget factory and they work well using $("selector").myWidget(myOptions). I want to avoid possible name collisions and prefer using the form $.myNamespace.myWidget(myOptions, mySelector), but an error is thrown when the selector matches no element on page: owner is undefined, that I traced to the line 3649, on jquery-2.2.0 (function acceptData). For reference, I've already read (and I think I understood):
  • Malformed selector fails when using $el.find(..), but not when using $(..)

    I came upon what I think is a bug when trying to refactor some code to use a common parent element. When splitting the selector up into a common part and using .find for the specific part it suddenly failed with a Syntax error since the attribute selector is missing the closing bracket. Using just the specific part as the selector in the main jQuery function works though, as does using a compound selector. Is there a difference in how selectors are parsed in the $(..) function and in the find(..)
  • Error in demo page

    Hi, in the page: https://jqueryui.com/datepicker/ i get a 404 error using chrome developer tools:  Request URL: https://jqueryui.com/resources/demos/bootstrap.js Request Method: GET Status Code: 404 Not Found
  • Buttonset failed accessibility testing

    We recently had our website fail accessibility testing because of buttonsets not giving any indication of keyboard focus being anywhere on them.  All other jquery ui widgets that we use do show keyboard focus.  Not this one.  Using the keyboard, it is quite difficult to use buttonsets (especially for checkboxes - radio buttons are a little easier) because you get zero visual indication as to what button in the buttonset currently has keyboard focus.  This is with jQueryUI 1.11.4 and with all themes.
  • Problem with jQuery Mobile Tables - Column Toggle Table

    Hello users! I want create a web app for my homepage. But my knowledge status in javascript and jquery is just a little bit low. I can not find my syntax error or my thoughts are wrong. I will be glad if somebody can help me. First of all, I send an array from my msql-database with PHP and JSON to the javascript. Just like this:  [{"eintrag_id":"2473","aktiv_datum":"2016-01-05"},{"eintrag_id":"2469","aktiv_datum":"2016-01-05"}]  When I startet the page all columns and rows will be loaded in the table.-
  • The tooltip dosen't close in sortable items - Occur in Firefox/IE only

    I have a list of sortable items, which have tooltip applied. Drag any one-item then drop outside of 'sortable' list. Issue: the tooltip will show forever until we hover that item again. Please refer this for my code: https://jsfiddle.net/83pmcf84/4/ Sorry for my bad English. Anyway, thanks for support.
  • Swipe and Panel on the same Page just don't work

    I have just overhauled my mobile page from 1.3 to 1.4.5 as there were problems in swipes. On the new platform I cannot get the swipe gestures to work with a panel on the same page, for my application the panel just doesn't appear when the ICON is clicked on the first page loaded. I have used the swipe demo as my foundation and this seems to work OK. I found that removing the line in red below from the supplied JS fixed the problem, however when I swipe forward say two pages and then swipe back one
  • Issue with datepicker

    Hi all,       I am using the jquery datepicker with the format dd-mm-yyyy. Manual input is enabled for the date field, when I try to enter value like 01-NOV-2014 which does not match the given format, the datepicker defaults it to 01-12-2014. Is there any fix for this/ any modifications in the js file to address this issue which i can make.
  • Passing extraParameters in trigger method not working for checkbox

    I have pass extra parameters for button and checkbox while trigger click using trigger method. But it's not working for checkbox. Please check the below example. http://jsfiddle.net/abtraju1/sz4d3ag0/7/ This issue happened due to below code(Line no: 4870-4875) only for checkbox. trigger: function() { if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) { this.click(); return false; } } 
  • Popup positionTo not scrolling the page

    I have a generated page with questions.When one or more questions is not answered, I want to position a popup just above the first non-answered question. In this jsfiddle: http://jsfiddle.net/petitbarzun/ytjbn3kd/ you can see it. It works with a positionTo up to about '#uc5_UC'. When you set the target to a value that would require to scroll to get in to view after loading the page, the popup comes on the lowest element still visible without scrolling. I tried to first force scroll the page with:
  • Theme Roller working but no theme options on download page still

    Theme Roller is working now but to download the JQueryUI from the download page no theme is able to be selected. 
  • Microsoft Edge with autocomplete does not work properly

    In Microsoft Edge, when the menuslect event in autocomplete triggers the "select" method, this triggers a "blur" event followed by a "change" event on the element.  The result is that the selected item is not set properly at the bottom of the function. I realize this may be an issue with Edge, but possibly consider setting the selectedItem before calling the "select" method to prevent this issue. Specifically: within the menuselect:function()... Move this line: this.selectedItem = item; to the line
  • Phonegap Jquery Mobile app scroll and navigation problems in IOS9

    Hi guys, I have a Phonegap app with Jquery mobile in the AppStore. I recently updated my phone to IOS 9 and the scroll stop worked. Im also having problem with the navigation inside the app. The app random redirect the user to the previous page when the user press a link or sometimes when the app makes ajax calls. I know that IOS 9 have a lots of bugs already but i really need to fix this problem, because the app is actually in production and the users are reporting the same problem. I found some
  • load() is unnesting nested UL / LI elements

    Hi, Version: jquery-2.1.4.min.js Browser: Chrome 46.0.2490.86 (64-bit), Firefox 38.4.0 I could not demonstrate this with jsfiddle as you need more than one HTML file to demonstrate the issue. Furthermore, I could not report this in http://bugs.jqueryui.com/newticket as the drop down does not show version 2.1.4. Only shows up to version 1.11.4. Name this as loadTest.html: <!DOCTYPE html> <html> <head>         <meta charset="UTF-8">         <title>jquery load test</title> <script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
  • Can't get resize event handler to work.....

    I have a dialog that is resizable.  I added a resize() event handler but for some reason it doesn't run when I resize the dialog.  I put a breakpoint in the resize function (the line where I put the breakpoint is highlighted in the code below).  But when I resize the dialog, the breakpoint never stops. Can someone help me figure out why?   $(document).ready(function() {     rows = new Array();     dialog = $("#addRecordDialog").dialog({       title:"Add Record",       autoOpen: false,       modal:
  • jquery 1.7.2 version ok 1.11.3 happen error.

    1.7.2 $(this) [<input type=​"checkbox" class=​"pc" name=​"needCompare_1447745538243" id=​"needCompare_1447745538243" value=​"1" style=​"display:​ none;​" checked=​"checked">​] $(this).get(0).checked true $(this).is(':checked') true $(this).attr("checked") "checked" this.checked true $(this).prop("checked") true ok 1.11.3 $(this) [<input type=​"checkbox" class=​"pc" name=​"needCompare_1447751632524" id=​"needCompare_1447751632524" value=​"1" checked=​"checked" style=​"display:​ none;​">​] $(this).get(0).checked
  • Content partly hidden behind header (data-position="fixed")

    Hi :) I'm facing the following situation: When my app initialises itself, I want to show the loading spinner and hide the first page (#main) until everything is ready. My code hides the #main page by default (display:none) and executes the $("#main").show() after the pageshow event. But the problem is: After $("#main").show() is executed, the first line of the content is partly hidden behind the header. This problem only occurs when the header has the attribute data-position="fixed". Without it,
  • Fancybox link lable

    can someone please help me to add a link label in my fancybox in html but it must be in the fancy box when the image blows up and i must be able to click on it and it must direct me to another html page
  • Problem with jQuery UI sortable in grid mode

    Hi, I have found a very weird behaviour of jQuery UI sortable in grid mode. Initially I thought it has something to do with our implementation, but then I have found it on your example as well. It is using tollerance intersect. And a small modification regarding the size of the drop zone is added (the bug is present even without that) The moving of the placeholder is supposed to happen after you reach at 50% of the next item. However, even if you in the very beginning of the next/previous item and
  • Page Navigation Issues under IOS9 (beta)

    After receiving complaints from several users, I loaded up IOS9 (beta) to test my existing app that works fine under IOS8.4.  Much of it works but I seem to be having some serious page navigation issues with the headers that were not present in IOS 8.x.  I'm running JQuery mobile 1.4.4. The bulk of the problems appear to be with navigation header buttons using 'data-rel="back"': <div data-role="header"  data-position="fixed">         <h1>Edit Stuff</h1>         <a href="#" data-icon="back" data-rel="back">Cancel</a>
  • JQuery v1.11.3 memory leak

    Hi Guys, We're developing a website using asp.net and JQuery v.1.11.3. It has frameset and frames (althought it is unsupported in HTML5). Our target clients use IE8. We encountered memory leak in IE8 everytime a page is being rendered by the frame element. I have also read several articles which states that there are memory leaks when using frames in IE8. So how do I confirm it as a bug? Well first I tried our website on other browsers such as Chrome and Firefox and it seems that memory leak doesn't
  • jQuery width fail

    If we toggle all 3 div the last bouncing Also, for the same reason, if we set all 3 div width self width, the last element go to the next line. See this  code for demonstration. I thing, this is because the .width function rounds to integer the width.
  • Dialog Modal disable all page, even dialog modal

    Hi i got a jquery dialog modal that shows a little for for add / edit info from a grid. If a set dialog as modal, it disable all page even the dialog window, i mean that all the page got the color of grey blackground and i cant even click in cancel button of dialog modal. If i set dialog as not modal, it works fine. Id like that this kind of dialog could be modal but i dont know what's happening. Anyone gets same behavior? Any idea for fix it? Thanks in advance.
  • .popup('open') not working after navigate next page

    1)   My start up page is 1.aspx and i am using  .popup('open') on this page and popup working fine. 2)   I navigate to 2.aspx page using  $.mobile.changePage( "2.aspx", {transition: "slide"}); 3)   back to  1.aspx page using  $.mobile.changePage( "1.aspx", {transition: "slide"}); 4)   Now .popup('open') function not working.  please suggest me solution. I am using  jquery.mobile-1.2.0-alpha.1.js
  • mouse offset/alignment

    Hi, having issue with the mouse alignment, if i change size of some object by draggable start event. http://jsfiddle.net/1a4zco4e/ Did anyone have a solution for this? thank you moxx
  • Chrom Debugger Crashes

    Dear JQuery Folks, i have write a piece of code which you can see in here: /////////////////////////////// //   Handle Multiple Views   // /////////////////////////////// function setActiveView(multiViewId, viewId) {     if (multiViewId == undefined) throw "multiViewId is Undifined";     if (viewId == undefined) throw "viewId is Undifined";     var mv = $(".multi-view").filter(function () {         if ($(this).data("multiViewId") == undefined) throw "data-multi-view-id is not defined over multi-view";
  • jQuery is not defined and some errors from js_composer

    Please can anyone help? I have some errors and I don't know how to resolve them. The errors are: Uncaught ReferenceError: jQuery is not defined wpml-progressbar.js:3  Uncaught ReferenceError: Backbone is not defined load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,svg-painter,jquery-ui-mouse,jquery-ui-sort…:255  Uncaught TypeError: a.widget is not a function composer-tools.js?ver=4.4.2:72  Uncaught ReferenceError: Backbone is not defined composer-atts.js?ver=4.4.2:105  Uncaught ReferenceError:
  • I can not register jQuery-UI bugs

    Hello, I'm trying to register a bug in http://bugs.jqueryui.com/newticket, however, the record is displayed the message: "Submission rejected the potential spam (Maximum number of posts per hour for this IP (127.0.0.1) exceeded) ". Can someone help me? Selínger
  • Dissapearing SVGs using jQuery sortable in IE11 Windows 10

    See my question and example @ stackoverflow. Any of you guys have an idea why this is happening? http://stackoverflow.com/questions/33040911/svg-icons-dissapears-in-windows-10-ie-11-using-jquery-sortable
  • opening a jqueryUI (1.10.4) dialog often crashes my PC (fedora 22)

    i've added a dialog popup box to my website and am finding that there is now a 50/50 chance that when i click on the button to open the dialog, my entire laptop will freeze and reboot! my site is based on the elgg framework (elgg.org) and i am using elgg 1.12.4 presently. i have removed all of the content from the popup, just to see if that helps, but it doesn't. i haven't seen anyone complaining of anything similar online yet either.. so for now i am stuck. anyone know what the issue might be? i
  • Datepicker show error

    hi team. I have two datepicker fields: Check-in "$(entr)" and Check-out "$(sal)". If  I select next month on Check-in, the close function shows Check-out datepicker with next month, but if I go back to Check-in and select previous month, I need to double click to go to previous month in Check out’s field. I find several examples but always see this error. Any solution? My code: $(entr).datepicker({                 dateFormat: "dd/mm/yy",                 minDate: new Date(),                 firstDay:
  • Input file iOS 9 display issue

    Hello, I have an issue on IOS 9 when I click on input type file when I build my app on phonegap but when I execute my code on safari then it works OK. Attached the issue (on left safari browser on IOS 9 iphone 6s, on right phonegap build app on IOS 9 iphone 6s) When i click on: '<input type="file" name="myFile" accept="image/*;capture=camera" id="myFile">' For information, it was working fine with jquery mobile 1.2 on phonegap, now I passed on jquery mobile 1.4.5 and it is not working anymore
  • Bug DatePicker jQuery-UI - Year less than 1000

    Hello, When I use a date lower than the year 1000, the DatePicker has some strange behavior, see two examples in Plunker: http://embed.plnkr.co/AFpkwKHDZA7rnU0sJiPh Selínger
  • jquery mobile change on Chrome

    Hello, I have an issue when I'm using changePage on Chrome (it is working fine on firefox) Issue I have two pages in one. I use changePage with "slide" attribute.  When I slide to page B from page A. It is OK When I slide back to page A from page B then the page is displayed and hidden few milliseconds after When I use "none" instead of "slide" to go on page B from page A then it is wokring fine The code to test it : http://jsfiddle.net/sz9pjbcv/ Thank you for your help.
  • Autocomplete prevent further ajax request to be async

    Hi, I have a Problem that after a autocomplete selection, None of my async Ajax request are working async. They will be handled synchrone.. . Without doing autocomplete, my Ajax request are able to fire as async. It strange, the ui is not blocked, but the requests depends on each other.. . Does any one have the same issue recognized? I use jquery-ui Version 1.11.4 and jquery Version 1.11.3 Here is the autocomplete source Ajax code: $ ( '#request_for' ). autocomplete ({ delay : 1000 , autoFocus :
  • jQuery Download Error Message PLEASE HELP :(

    Hi there! I can't seem to download jQuery, and continue to get this error message. Line: 930 Char: 2 Error: 'document' is null or not an object Code: 800A138F Source: Microsoft JScript runtime error I am using windows 9, downloading "uncompressed, development jQuery 1.11.3" using google chrome, and every time I download (right-click > save > open) or (left-click > download > open) and attempt to open the file, I receive the aforementioned message. Can someone please help me troubleshoot this, as
  • Dropdown form element not workng when form is submitted to that page itself

    I have a page myform.php and it has a form targeted to that page itself like; <form action="myform.php" method="get">     <select name="type" id="type" data-native-menu="false">         <option value="all" selected="selected">Show all forms</option>         <option value="forma">Form A</option>         <option value="formb">Form B</option>         <option value="formf">Form F</option>         <option value="formx">Form X</option>     </select>     <button class="ui-btn" type="submit" name="submit"
  • Button alert function not working when loaded with ajax

    I have a search form in my page1.php file, which is targeted to page2.php, which displays results. I have a button in my page2.php, which on click, alerts "hi", like; $(document).ready(function() {     $('#alertbtn').click(function(){         alert("hi");     }); }); This works fine when page2.php is loaded separately, without using page1.php's search form. When I search using page1.php's form, and when page2.php appears, the alert function is not working. How can I fix this?
  • Next Page

  • Announcements

  • The Basics of jQuery AJAX

    A step-by-step tutorial for those new to jQuery and wanting to use AJAX in their projects. Includes valuable information about troubleshooting using the console and understanding the request / response. http://jayblanchard.net/basics_of_jquery_ajax.html
  • jQuery Conference 2010: Boston Announcement

      The jQuery Project is very excited to announce the jQuery Conference 2010: Boston on October 16-17, 2010.  The conference will be held at the Hilton Boston Logan in Boston, Massachusetts.  The best part of this announcement is that Tickets are on sale now!  This venue is the largest that the project has worked with to date (Harvard Law School in ‘07, the MIT Stata Center in ‘08 and Microsoft New England Research Center in ‘09) and we expect to sell out very quickly. A brief synopsis of some of