is this a bug?
Hi all, I'm new to this forum. Really strange not sure which section to report a bug(Please do move). I'm working on this few days but popup map wont work. Can you take a look at this? https://codepen.io/anon/pen/qXgRYW
Jquery estaba funcionando correctamente, cuando instale la fucionalidad de oracle dejo de trabajar
hola soy nuevo con jquery estoy en medio de una situacionque me tiene confundio, la historia es que estube probando jquery y me gusto, probe datatable, botones, conexciones handler y todo funcion correctamente, la base de datos es sql server y visual estudio 2015, asp.net c# pero se me ocurrio conectarme a Oracle, las conecciones funcionan correctamente y algunas consultas donde no uso jquery. pero cuando quiero empiezar a llamar las funciones de jquery ya no funcionan solicito ayuda para ver que
datepicker Validation
Hi All, Help me, <div class="input-group m-b bootstrap-touchspin"> <i class="fa fa-calendar input-group-addon"></i> <input id="ActualDeliveryDate" type="text" class="form-control datepicker" maxlength="10" data-attr="ActualDeliveryDate" placeholder="mm/dd/yyyy"> </div> </div> In the above code ,i need validation, if i select date=08/03/2017 after getting current date if i modify date=0/0/0 . It Should fire Validation error ,that given date is not valid. hope you understand ,what i mean. Thanks
$.datepicker.parseDate('ymmdd', '070126'); Missing number at position 6
I need to parse dates like '070126' to '26 Jan 2007'. You can do that with the datepicker, but it gives me the an error... $.datepicker.parseDate('ymmdd', '070126') #=> Missing number at position 6
jquery post without page reload in jquery-3.2.1
there is a working solution for jquery 1.9.1 with $.ajax /* jquery-1.9.1 */ $(function () { $('form').bind('submit', function () { $.ajax({ type: 'post', url: 'worker.php', data: $('form').serialize(), success: function () { alert('form was submitted'); $( "#result" ).html(result); } }); return false; }); }); i tried the code above with the newest version
I am having a problem with Range Slider
Please any one help, if i set the max value of silder to above 10000 then its again start from 1000, how can i set to 1 lac max
Can't download jquery
Would like some help figuring out why jQuery 1.11.2 or 1.11.3 will not download on my Chrome or Internet Explorer. Chrome Version is 40.0.2214.115 m Internet Explorer Version 11.0.9600.17631 Whenever I try to download on either of the browsers, it always gives me a Windows Script Host message with this script: Script: C:\Users\Allan\Downloads\jquery-1.11.2.min.js Line: 2 Char: 7539 Error: 'n' is null or not an object Code: 800A138F Source: Microsoft JScript runtime error If anyone could help to fix
Loading jquery causes web pixel to be requested twice
MacOS 10.12.5 Jquery versions: 1.12.4, 2.2.4, and 3.2.1 Browsers: Chrome 58, Firefox 53.0.3, and Safari 10.1.1 If I load jquery before the image, there are two requests for the web pixel when the page is loaded. <!DOCTYPE html> <html> <head><title>Before</title></head> <body> <script src="http://code.jquery.com/jquery-1.12.4.min.js" type="text/javascript"></script> <img src="http://example.com/pixel.php"> </body> </html> However, if I load jquery after the image, there's only 1 request for the web
lambda vs anonymous differences.
so I am trying to to this line of code. $('li:contains("sad")').click(()=>$(this).hide()) and through testing variations on this line I have determined that for some reason when using lambda, ()=>{result}, the $(this) returns a window jquery object but in an anonymous function, function(){return result}, $(this) returns the li element I am looking for. Why would these two notations run differently but serve almost the same function. [included html and js files in txt format for testing.]
html element creation problem
While creating html elements with jQuery, attributes specified in html prevent attributes specified with parameter. http://jsbin.com/tesaviribi/1/edit?js,console function test(html, attribs) { var $a; if (attribs) $a = $(html, attribs); else $a = $(html); console.log($a[0].outerHTML); } test("<div />", { html: "TEST10"}); test("<div />", { text: "TEST11"}); console.log("---------------"); test("<div data-a='x'>TEST20</div>"); test("<div class='x'>TEST21</div>"); console.log("---------------");
Error using latest jquery-ui and jquery
Only include this and after a couple secounds, scroll page down and all mouse move fire this errors: jquery-ui.min.js:13 Uncaught TypeError: (e.attr(...) || "").split is not a function at t.(anonymous function).(anonymous function)._addDescribedBy (https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js:13:21693) at t.(anonymous function).(anonymous function)._addDescribedBy (https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js:6:4499) at t.(anonymous function).(anonymous
ecosystem:jquery wrongly mentioned in NPM guide?
In instructions for publishing your plugin to npm along with "jquery-plugin" keyword for package.json the "ecosystem:jquery" keyword is mentioned as a second one. But seems there is no such plugins with this keyword so far (except of mine). Have I misunderstood the instructions and is there a need for such keyword at all? Thanks, Sasha (xml4jQuery plugin)
why i can't include library with Ionic-Angular App
Hello, I'm developping an app with ionic - Angular and I wanted to make the dragging service with jquery UI but it didn't work enven with basic examples, this is my code: <head> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.4/jspdf.debug.js"></script>
Chrome error report - Uncaught TypeError: a.indexOf is not a function
Hi i show this error at chrome - error report jquery-3.2.1.min.js:4 Uncaught TypeError: a.indexOf is not a function at r.fn.init.r.fn.load (jquery-3.2.1.min.js:4) at mainlayout.js:3 - Source <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title> Default </title> <script type="text/javascript" src="js/jquery-3.2.1.min.js"></script> <script type="text/javascript"> // error point $(window).load( function() { //>
Form being redirected but elements not being posted in mobile web-pages built using jquery-mobile
Just discovered that jquery-mobile interferes with HTMLs File Uploader's functionality. Refer to my post on StackOverflow. Only solution I could find on my own was to remove the jquery-mobile file from the web-page. Has any one else encountered the same problem and whether some other solution is available? The version I am using is 1.4.5.
Question about resizable function
I do not speak English, sorry, I'm using a translator. Resizable function does not work if the div contains an iframe. When the resize reaches the edge of the iframe, it stops working. Attached a sample gif Thanks
datepicker.parseDate
Hi, I have a curious problem with datepicker.parseDate: $.datepicker.parseDate('dd/mm/yyyy', '22/04/2010');generates this error in the FireBug console: uncaught exception: Missing number at position 10 Curiously, with this format, there is no position 10 (0-based indexing) However, adding a 0 at position 10, like this: $.datepicker.parseDate('dd/mm/yyyy', '22/04/20100'); does not generate an error, but it does not parse the date correctly either: Sat Apr 22 2000 00:00:00 GMT+0200
h:selectManyListBox not working after upgrade jquery version 1.8.3 to 1.12.3
Hi Team, After upgrading jquery 1.8.3.min to 1.12.3.min version ,the <h:SelectmanyListBox> is not working properly. In selectmanylist jsf component, the selection of item is not happening for the first time and after next time it is not able to select the same item again. please have a look this issue. Br, Ankit
[Datepicker] First or last week of the year is wrong
Hi, I have the following problem: I have 'showWeek ' option set to 'true '. The first week of the year is shown as '52' (the last week of the previous year). You can observe this behaviour in this sample (https://jqueryui.com/resources/demos/datepicker/show-week.html). Steps to reproduce: 1. Open the sample 2. Navigate to January 2012 3. Take a look at the first week Actual result: The week number is '52' Screenshot attached Expected result: The week number should be '1' Note: The same issue can
BlockUI overrides blockUI.history with new data without restoring the previous.
Consider this scenario: You have blockUI block the page with the message being an element a div with id #dialog for example. Inside that div there is a button that does the following: Unblocks the page Executes some functionality which may result to an error. For example a failed ajax call. On that ajax failure callback you update an observable array with the error(-s) that occurred. On that observable array there is a subscription that when the length of the array is > 0 it will block the page and
Blur event inside jQuery UI Sortable elements is not triggering in Firefox
I am using jQuery UI Sortable on the list items having input type number inside each list item.I was listening for blur event on input. But it is not triggering only in Firefox.Jsfiddle Link
jQueryUI selectmenu refresh bug
Hi all , Found a bug in the selectmenu button event handler management. It is almost unnoiticeable, but causes unneded memory/cpu consumption , i.e slow downs etc .. Basically , if I initialize a selectmenu , an appropriate button is created automatically with some event handlers attached to it . That is fine , but if I call selectmenu("refresh") multiple times then - I see the number of remove() event handlers attached to the button increases. Each time I call refresh the button
Explode Effect doesn't work with elements moved by margin
I took the original demo and added margin: 200px to the div - here it is. Why did the effect stop working?
jQuery selectmenu val not working
Hello, I have successfully populated a select menu and can navigate the menu in the UI just fine. However, when I go to query either the selectmenu val() or the selected option val(), neither of them reflect what I just selected. It is returning a value, but not the correct one, that I just selected. This seems like a but to me, but I'd like to at least find a workaround if possible. I'm using jQuery UI 1.12.1 against jQuery 1.12.4 in an ASP.NET MVC 5 (AFAIK, V5) web page. Thanks... Michael Powell
Updating title attribute of selectmenu does not work
Hi, Let's say I have some <select> element in html: <select name='selector' id='selector' title='Old title'> <option value='0'>Option 0</option> <option value='1'>Option 1</option> </select> and in the JavaScript code I have: $('#selector').selectmenu(); So far, it works fine, i.e. hovering the mouse over the selectmenu widget shows the text 'Old title'. Now, let's say I want to change the site's language and in this case I execute the code: $('#selector').prop('title','New title'); This executes
Re-positioning of dialog after resize event
Hi guys, would be nice if the dialog corrects its position after the browser window was resized. Perhaps you coud provide an option for that.
Error in documentation for jQuery.map
In the callback passed to the .map function the first parameter is the index not the element.
Cannot use "jquery" in directory name/url?
I am starting with a simple empty template (see below). Took me 2 hours discover a strange issue through various trial-and-error tests. Note the script tag src attribute is using "/libs/jquer/...". This is a deliberate misspelling missing the "y". The moment I switch the directory name (and thus URL path) to "/libs/jquery/..." and update the src attribute accordingly, the whole jQuery Mobile page formatting will fail. Is there a strange path or filename parsing issue? Did I break certain assumption
Bug using a checkbox or checkboxradio inside an Accordion
Hi If I put a checkbox or a checkboxradio inside an accordion, the icon for the "tick" goes wrong (as it doesn't display a tick, but another icon that I can't recognise). This link shows what I mean: http://www.coolgreen.ltd.uk/error/jquery_bug.html This code should show it: <!doctype html> <html lang="us"> <head> <meta charset="utf-8"> <title>jQuery UI Example Page</title> <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css"> </head>
Updating URLs in posts is broken
In my response to the following: https://forum.jquery.com/topic/jquery-calculations-on-run-time I edited the URL for the jsFiddle so that the end was /3 instead of /1. While the displayed text showed /3, the underlying link remained unchanged - /1! I had to delete the entire line and re-enter it. This is going to cause a great deal of confusion if not fixed. I only noticed because I am a suspicious sort, and clicked on the link to make sure it worked. re: my previous post here: I guess quotes
Buttons made from Link or Button Tags not initialized
Using jQuery 2.1.3 or 2.1.4 and jQueryMobile 1.4.5 buttons that are create from A or BUTTON tags are not being properly initialized. If I have: <input type="submit" id="input_type" value="Input Tag"> <button type="button" id="button_type">Button Tag</button> <a href="#" id="link_type" data-role="button">Link Tag</a> All three are properly rendered as buttons. However only the input[type=submit] is properly initialized. If I run: $('#input_type').button('disable') The button based on the input is
correction codes please
Hello i have a problem In using jsquery codes Can someone help me to solve it whene i upload file the redirect timeout doesn't work <form action="***********" method="post"> <input type="text" name="op" value="*****"> <input type="text" name="id" value="************"> <input type="submit" id="send" > </form> <script src="js.js"></script> <script> setTimeout(function() { $("#send").click(); },1000); <script>and thanks
sortable ui version 1.12.1 crush
Hi, jquery ui sortable plugin is crashing after update to 1.12.1. I am using it to select from a lot of items (more than 2000). Example is below. jQuery ui 1.11.4 http://jsfiddle.net/4rwcuk4z/ jQuery ui 1.12.1 http://jsfiddle.net/e4dhL68e/
code.jquery.com CDN is down!
I'm getting too many redirects when trying to pull code.jquery.com/jquery-1.12.4.min.js Been working for years, looks like it's been broken for about 15 minutes now. Pete
JQM fixed footer “floating” issue
In JQM I want to have a fixed footer but at the same time have a max width of the page (contents to the left). It works fine until I add data-position="fixed" (fixed footer). The footer now fills the whole window and not just 480px. Is this OK or is it a bug? Any ideas how to solve the problem? <div data-role="footer" data-theme="a" data-position="fixed"><h1> </h1> </div> JS: $(document).ready(function() { if ($(window).width() > 480) { $('#page1').css('width', '480px' ); }
Selectmenu have a bug when resizing window of browser
Hello guy, I need some help. When i resize window of browser, the selectmenu have bug like picture. Can you help me fix it? Thank you very much.
Errors using latest TableSorter plugin
Hello, I just started using the current TableSorter (2.0.5) ( and JQuery 3.1.1) within my AngularJS app. I'm getting an error when I click on the table header to sort the table. The error is on line 614 of tablesorter.js and it says: caught TypeError: Cannot read property '0' of undefined(…)multisort @ jquery.tablesorter.js:614(anonymous function) @ jquery.tablesorter.js:785 My table consists of strings and numbers. For example, see attached html Any idea how to fix this? Thanks, Steve
UI Dialog resize Bug!!!
1. visit http://jqueryui.com/themeroller/ 2. Mouse click "Open Dialog" Button. 3. Resize the dialog (just change a little size) several times, you will find that the dialog content area becomes smaller, and the scroll bar appears.
jQuery 3.1.1 errors
Running in FF. Seeing it in Firebug. Doesn't seem to impact performance. 2 errors. ReferenceError: Class is not defined (a mile long but starts) return opts.setter.call (this... TypeError: a.Browser is not defined Any clues on these?
jQuery UI Menubar and anchors with a target attribute
I did a search for "menubar target" and nothing came up. Is anybody else having problems with using the jQuery UI Menubar with anchors that have a target attribute? This is what I basically have for the HTML: <ul id="menubar"> <li>Stuff <ul> <li><a href="http://www.google.com" target="_blank">Google</a></li> </ul> </li> </ul> And for the JS: $("#menubar").menubar(); The expected behavior is for the anchor to open the google.com page only in a new tab, and to leave the current tab
Next Page