• bugfix for jquery-2.1.1 vendorPropName() - critical for my apps

    function vendorPropName( style, name ) { // shortcut for names that are not vendor prefixed if ( name in style ) { return name; } // check for vendor prefixed names var capName = ( name==='' ? name // i have jQuery.css({bottom:''}) which are Necessary for my apps to run. : name[0].toUpperCase() + name.slice(1) ), origName = name, i = cssPrefixes.length; while ( i-- ) { name = cssPrefixes[ i ] + capName; if ( name in style ) { return name; } } return origName; }
  • Bootstrap alert JS won't slide down

    Using this JS: $('#comment').click(function(e) { e.preventDefault(); $('#comment').slideDown(); }); } And this html code: <div id="comment" class="alert alert-info" style="margin-top: 20px; display: none;"></div> <button type="button" class="btn btn-default btn-sm" id="route_update">Edit</button> it should, if successful, slide down with the message...But it doesn't, the blue bar won't go down(it's not displayed). Any suggestions? Any help will be appreciated The complete js can be seen following
  • How to add a color to a list without using css

    Hi everyone, I have this code: <div class="amenitiesul"> <ul> <li>Junio</li> <li>Setiembre</li> </ul> </div> I need to put two different colors background at "junio" and at "setiembre". And I can not add an "id" neither "class".  I don't know how to do it, somebody can help me please?  Anna.
  • Can't add resizable widget dynamically?

    CAVEAT: It's entirely likely this is my own stupidty and not a bug.   Check out this JSFiddle.  It creates a resizeable box, then adds another dynamically, and tries to initialize that, but only the first box is resizeable. 1) What is the correct way to do this? 2) (If I'm doing it semi-correctly), what is wrong here?
  • How to highlight active menus in slide down box menu.

    Hai. Can anyone help me with highlighting the active menus in slide down box menu. Download this jquery plugin for free from http://tympanus.net/codrops/2010/07/16/slide-down-box-menu/
  • Loader dos not work while the page loading

    Hello all, I have problem with page loader it's not showing while the page loading for example http://www.3aqark.com/webapp when your click on the link (inside the page) it suppose the loader showing will the next page loading!! and same problem in the next page!! any help ^_^
  • jquery bug

    version:jquery2.0.3,the same to 2.1.1 var o = {}; o.n1 = o; console.log($.extend(true, true , {n2: o}));//or  console.log($.extend(true, {}, {n2: o})); error:too much recursion
  • $.post not working on shared server but working locally

    I have a script that sends some HTML to the server and server saves the HTML as a newsletter. the script works perfectly on my localhost, but, when i put it online, it doesnt. I checked the file permissions, the URL, the php file but nothing solved my problem I have been looking for a solutiin for this problem since last week:     $.post("newslettersAPI.php",             {id:newsletterID,templateID:templateID,content:content,subject:subject},                 function(data){                                        
  • Problem with datepicker and overlay() jquery tools

    I'm loading a datepicket on a input, the first time, it's correctly running without problem but when I close the windows ( Overlay ), Then I try to open the windows but the datepicket doesn't work. I need refresh the webpage  and Then again a can use the datepicket only one time. 
  • [SOLVED] jquery validate - Cannot call method 'call' of undefined

    Good afternoon, I think i found a bug with a cutom validation rule. When the form is submited without modify any field, the custom rule is called. But if you set email field and give a password, you get an error (tests realised with chrome) : Uncaught TypeError: Cannot call method 'call' of undefined a.extend.checkjquery.validate.min.js:4 a.extend.elementjquery.validate.min.js:4 a.extend.defaults.java-scriptjquery.validate.min.js:4 bjquery.validate.min.js:4 a.extend.validateDelegatejquery.validate.min.js:4
  • .find() function failing when <body> does not have a container <div>

    Hello, I've been reading "Learning JQuery, 4th Ed" and I think that an exercise on Chapter 6 may have led me to a bug in the .find() function. I am attaching the pertinent files to this post. Here is the setup. There is an index.html file that has some clickable letters on the left-hand column. The whole chapter was about Ajax, so clicking on the letters loads in dictionary entries using a variety of Ajax methodologies. One of the exercises asked to create a tooltip that displayed entries begging
  • juery slider is loaded only after page refresh

    In jquery mobile image slider is loaded only after page is refreshed by ctrl+f5. my code is- <script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"></script> <script type="text/javascript">         var i = 0;         var image = new Array();         // LIST OF IMAGES         image[0] = "images/home-images/wmx1.jpg";         image[1] = "images/home-images/wmx2.jpg";         image[2] = "images/home-images/wmx3.jpg";         image[3] = "images/home-images/wmx4.jpg";        
  • The Problem is i am unable to display the series Legends for the graph, anyone can please help ???

    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"     pageEncoding="ISO-8859-1"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>jQplot JSON POC</title> <link href="../static/css/jquery.jqplot.css" rel="stylesheet"> </head> <body> <script src="../static/js/jquery.min.js"></script> <script src="../static/js/jquery.jqplot.min.js"></script>
  • blockUI - focus() called and not returning?

    Hi, I seem to be experiencing an intermittent issue where unBlockUI() is never reached and the user is left with what they interpret as a "hang" or "freeze". I am on blockUI 2.42, jQuery 1.8.2, and running against IE8. In IE8, I had the developer tools profiler running and received the following as the last execution prior to the currently unrepeatable incident: Function Count URL Line Number focus 1 https://.../jquery.blockUI.js 496 Here is Line 496 in blockUI.js: function focus(back) { if (!pageBlockEls)
  • Display Block Required for older plugins and certain animations

    All JQuery seems to have issues with hidden content, certain animations, etc. The solution for this roundabout for Safari and some other browsers is to add the css display block to your code $('.class').css("display", "block"); Example below will fix your safari display issue and certain mobile browsers. I found this issue with a number of older plugins and JQuery 1.11 Came across when I build a marquee I noticed that if I loaded JQuery 1.6 that that appended HTML and CSS automatically added display:
  • Recover return value in jquery

    Hi all, can someone help me please, i would like to recover a value with jquery and post it in my html bloc. I can get the value but I could not display it  var select = '';    $("select[id='language'] option:selected").each(function(){    select= $(this).val();    alert (select); // i want to sent this value in my label, i tried with Ajax but Ko     }); this is my html code and you can see pic to get more explanation <div class="row"> <div class="language-skils"> <div class="text-field"> <label
  • JQuery Mobile 1.4.2 Demos - Transition not available

    Hi,  recently I tried to learn about transitions in jquery mobile 1.4.2. Unfortunately http://demos.jquerymobile.com/1.4.2/transitions/transitions/ is not available (404) Oddly when I navigate from http://demos.jquerymobile.com/1.4.2/ to  http://demos.jquerymobile.com/1.4.2/transitions/  I will land on "home" again. When I navigate to http://demos.jquerymobile.com/1.4.2/transitions/intro/ I will land on the same page as http://demos.jquerymobile.com/1.4.2/intro/ Every thing is dublicated, except
  • jquery.js:3 -PROBLEM

    The website that I edit www.osstarigrad.edu.rs  when I updated WordPress, reported my problem: Error: Syntax error, unrecognized expression: #cimy_div_id/0/ jquery.js:3 Cimy Header Image Rotator  not working Pelace help me? Thanks
  • jqueryui datepicker documentation mislabeled

    http://api.jqueryui.com/datepicker/  The events: beforeShow, beforeShowDay, onSelect, onChangeMonthYear, onClose are mislabeled under the options column. 
  • Memory leak using JQueryUI-1.10.3 in IE 8

    Hello Experts, i have developed a web page which is loaded/displayed into a webbrowser control. i observed huge memory leaking in my application. after digging i identified memory leak is due to the usage of JqueryUI . to find out the root cause i modified my page to a very simple page like below. <!DOCTYPE html> <html> <head> <title>Sample test page</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="x-ua-compatible" content="IE=8"> <script type="text/javascript"
  • Issue with Resizable with Constrain-Area on Demo Site

    Using Google Chrome Version 32.0.1700.107 @ http://jqueryui.com/resizable/#constrain-area .  the resizeable area extends below the containment box so it isn't actually contained.
  • Pop up position always reposition to "window" when resize the window

    Hello,  I use the popup widget of jqm1.4.2, set data-position-to="#position-header", but when open the popup div then resize the browser window, the div is reposition to the center of window position not the original one. I check the code of the jqm1.4.2 there is something as follows: _resizeTimeout: function() { if ( this._isOpen ) { ........ this.reposition( { positionTo: "window" } ); this._ignoreResizeEvents(); } this._resizeScreen(); this._resizeData = null; this._orientationchangeInProgress
  • IPAD 4 gen / IOS 7 fixed footer bug (1.4.2)

    Hi, I was testing my webapp in one Ipad(4 gen ) and i have an unexpected behavior using a fixed toolbar in the footer, after hours looking for errors in my code I decided to look what happens with the demos of JQuery Mobile and i think i have found a bug http://demos.jquerymobile.com/1.4.2/toolbar-fixed/ As you can see the toolbar/footer is no longer fixed to the bottom, and this also happens when the content of the page does not fill the entire page, in that case safari places a grey bar, but this
  • how to use cross-domain to ajax load?

    i add header to "bbb.com" php server like this header("Access-Control-Allow-Origin: *"); and in aaa.com like this <a href="http://bbb.com/"  data-ajax="true" >test</a> but is not ajax load, how can i do? i need ajax load, sigh,  demo please, 
  • I can't enter jquery.com & jqueryui.com

    I tried change DNS address, clear DNS cache, clear windows/system32/etc/hosts file. I still reach jquery.com & jqueryui.com. I can enter https://forum.jquery.com/ I can enter with anonymouse.org etc. proxy sites. What's the problem on my computer or my internet? How i can find what the problem?
  • 'length' is null or not an object with Jquery Library v1.4.4

    Hi Team,   I am facing this issue while page loading. I am using jquery.library.js v1.4.4 and error is coming in below line of code each: function( object, callback, args ) { var name, i = 0, length = object.length, isObj = length === undefined || jQuery.isFunction(object); if ( args ) { if ( isObj ) { for ( name in object ) { if ( callback.apply( object[ name ], args ) === false ) { break; } } } else { for ( ; i < length; ) { if ( callback.apply( object[ i++ ], args ) === false ) { break; } } }
  • Page about Transitions on jquery mobile isn't working

    http://demos.jquerymobile.com/1.4.2/transitions/transitions/
  • iButton breaking ASP.NET AutoPostBack tag

    Title says it all, attempting to use iButton to style checkboxes in asp.net as such: $(document).ready(function () { $(":checkbox").iButton(); }); The boxes will style, but it disables the auto-post back property of the asp.net control. Does anyone know how to resolve this issue?
  • Fancybox doesnt works in IE (Internet explorer)

    I designed a page, and i used the fancybox plugin, it works in all browser without to upload to the server, but when i upload the page on the server, the fancybox doesnt work in internet explorer, i have IE9. I used the development tools to debug the code of the page, and it marks an error: SCRIPT438: Object doesn't support property or method 'Fancybox'. Why does this happen?. i would apreciate your helph, and excuse my english.
  • jQRangeSlider: jQuery date range slider

    date range slider has the issue that when user moves the max slider on right towards to left till very beginning it pushes the min slider outside the scale. Is there any way it can be fixed?
  • addClass not working in IE

    Internet Explorer 11 (possibly other versions) ignores the first application of .addClass() if the target element: is one of the following inline elements: label, strong, span, em contains an input element (any type) contains text within another inline element such as: label, strong, span, em It behaves properly in other browsers. http://jsfiddle.net/r6SVH/2/
  • Dialog Draggable Bug

    Example http://jqueryui.com/dialog/#modal-confirmation For view Bug Need get in body and create scroll. 1. Get Example in new window and add more textlines in BODY. 2. Minimised window browser that vertical scroll enabled. 3. Hand move scrollbar anymore as something. 4. Try move Dialog.... dialog window change position from cursor to another place..
  • Problem with superfish subsubmenu

    Hi all, I'm using the superfish plugin in my website and i need homologate it to IE8 . In IE8 i have de problem below: Someone hed this problem? Help me please!
  • Google CDN not hosting Images & Icons?

    I am doing something silly or does the Google CDN not host the icons and images for Jquery Mobile? Google CDN http://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.2/images/ajax-loader.gif Where the Jquery CDN loads them fine. http://code.jquery.com/mobile/1.4.2/images/ajax-loader.gif
  • Opening dialog containing datepicker with dialog("open") behaves different from autoOpening

    Examine this code: http://jsfiddle.net/Starx/8VbEU/2/ It opens and the autoFocus is removed via .blur(). Compare to this code: http://jsfiddle.net/8VbEU/134/ The autoFocus isn't removed and the focus remains on the datepicker which is now opened.
  • Scrolling up and down in Chrome Browser in Android popup disappear for few seconds

    I am using jquery mobile popup in my site. When popup opens with chrome in android device popup behavior slightly changed. Scrolling up and down with popup open, popup disappear for few seconds and comes again. In other browsers it work great only chrome have this problem. It work fine with iOS too. I am working on this problem with long time but not getting any solution. I am using jquery.mobile-1.4.2.js file. Here is the demo page. http://demos.jquerymobile.com/1.4.2/popup/ Steps to reproduce Open
  • Broken images.

    [Error] Failed to load resource: the server responded with a status of 504 (Gateway Time-out) (defaultPhoto.png, line 0) https://i1.wp.com/img.zohostatic.com/discussions/v1/images/defaultPhoto.png?ssl=1 JΛ̊KE
  • Why the number of the beast?

    Why is jQuery using the number of the beast as its logo? The jQuery logo is simply Vav-Vav-Vav (that's 666 in Hebrew) rotated 180 degrees.
  • 1.4.2 current page panel closes on previous page pagehide event

    I am migrating from JQuery mobile 1.3 to 1.4.2   We dynamically generate a panel as a menu on pagebeforeshow and open the panel automatically on a wide display to have less render time on pageshow. In 1.3.x this worked fine and the various examples around the internet work.   If the page is displayed directly then the panel is displayed correctly.   However if you navigate from one page to another you can see the menu for a second then it vanishes.   Tracking the issue back, this seems to be the
  • External Panel on multi page html is hidden by content

    I raised an issue here: https://github.com/jquery/jquery-mobile/issues/7208 I am using a multi page template and an external panel. When the browser accesses a subpage directly the panel appears but then is hidden by the content. 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