PNG issue with IE6
Can we solve ie6 png issue using jquery..?
$("button[value='submit']) selector has different behaviour in IE8 and other browsers
For a tag button like this, that has an attribute "value" assigned and also contains some string (different from the "value" attribute): <button type="submit" value="submit">Send</button>selector $("button[value='submit']")returns an empty set in IE8, while in other browsers (FF, Opera, Safari, Chrome), it gets me the right button. Although selecting the button using $("button[value='Send']") works in IE8, while returns an empty set in other browsers. I couldn't find any information in the CSS specification
Dynamic Positioning tooltip not working.
Hi All, I am studying the jQuery dynamic positioning tooltip tutorial ( standalone verison : http://flowplayer.org/tools/demos/tooltip/index.htm). The tutorial utilizes jQuery's dynamic positioning tooltip. Basically I have done everything the tutorial states to do but when i roll over my icons the tooltip is not displaying. Any tips and suggestions are welcome and very appreciated. Here is my html: [html] div id="demotip"> </div> <div id="demo"> <a href="#"><img src="assets/web/image_sm.png"
unable to leave comment or reply in a specific post
I am unable to make a reply or comment in this post, any idea why? http://forum.jquery.com/topic/jquery-tabs-30-3-2010 http://www.tentonaxe.com
jQuery Dialog breaking in IE 8 Compatibility Mode
I'm using a modal dialog on my page and I get this error in IE 8 Compatibility Mode: Error KB927917 in IE8: Unable to modify the parent container element before the child element is closed. The container for this dialog is defined like so: <div id="dialog" title="Enter amount"> <p id="validateTips"></p> <form> <input type="text"name="amount" id="amount"/> </form> </div> Then in $(document).ready() I call: $('#dialog').dialog('open'); The $("#dialog").dialog({...}) has some basic functionality in
height() returns incorrect value of inline elements in Safari
I just discovered a problem in Safari 4.0.5 (Windows 7 x64) using $("#myID").height() to get the height of an inline-styled element (a div in this case) which contains other elements (several paragraphs in this case). A quick research has not revealed any posts about it therefore I’m posting it here. All major browsers return the right he height, except Safari. This problem doesn't occur if the div contains no (block-level?) elements or if the div isn't styled as an inline-element. From my point
"$.event.special.live.add" does not pass data argument to "$.event.add"
I am attempting to support "live" events in a custom special event, and the data object passed in the "bind" method gets passed into my special event "setup" function. This allows accepting that argument as options. This does not work with the "live" method. The "data" property is correctly set in the "live" handler "event" object, but not passed into my special event "setup" function. It is a very small change indeed. On line 2029 of jQuery 1.4.2,in the "jQuery.event.special.live.add" function,
jQueryUI 1.8 .toggle doesn't delegate off to jQuery core .toggle properly
Ran into this on a production app that was using 1.3, we upgraded to 1.4.2 and all the code worked except .toggle('normal'); which lost the previous functionality of showing/hiding the element with a transition and now doesn't do anything. Tested in the app and in isolation in a couple browser to make sure I wasn't doing something stupid :P jsBin Samples Not working (jquery core + ui loaded): http://jsbin.com/izinu/8 Working (jquery core only loaded): http://jsbin.com/izinu/4/ Steps to reproduce:
Modal dialog and google maps (loosing mouse events)
UI Modal dialog 1.8.0 on jquery 1.4.2 with à Google map v2 on it, does not stop dragging the google map when the mousebutton is released. This does NOT work in Chrome and FireFox but works ok in IE 8.0 As soon as I make the dialog non-modal the map works as expected. So it looks like a ui-modal-dialog does not return the mouse-up event. How could I fast solve this? I was so dumb to not check enough when coming from 1.7.... Regards, Henk
jQuery Web Site Hosting
For the past couple of days, I've been getting disturbing errors when trying to navigate through jQuery. Often, when I click for details on a plug-in, I get a page error because "users bandwidth exceed". As I write this, my attempts to go to the jQuery UI page from the top menu gives me a 502 error, Bad Gateway. Any thoughts as to what's happening?
jquery 1.4.2 - $post - memory and handles grows up on IE 7/8- memory grows up in firefox and opera
Hi, I've switched to the new version of jquery and get trouble with ajax ($post). I see in the taskmanager of windows on every ajax call there are 2 handles lost and the memory usage of the browers grows up. With jquery 1.3.2 there are no problems. Is there a solution? Regards Dirk I'm using apache 2.2.14 (win32) php 5.2.13 (cli) jquery 1.4.2 code: 1) test_post.html 2) test_post.php <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head>
closest should return the deepest match for each selector
For performance reasons, and for what I considered expected results, closest should return the first match per selector. This is causing problems with event delegation with nested DOM structures. For example: Consider a nested menu like: <ul><li> Option 1 <ul><li>Option 2</li></ul> </li> And the following code $('li').live('click', function(){ $(this).addClass('clicked') }) If you click on the deep li, the event handler function will be called on both LI's. This makes using event delegation
`make lint` fails in HEAD (d6f03aa0df4f734f6f09bf82effa5b7fcd8487fc)
I just tried building jQuery with 'make' (make all) but this fails because 'make lint' fails with the following errors: % make lint Grabbing external dependencies... Building selector code from Sizzle Building ./dist/jquery.js Checking jQuery against JSLint... }; var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, Problem at line 4007 character 2: Unnecessary semicolon. undefined Problem at line 6308 character 25: Too many errors. (99% scanned). js: uncaught JavaScript runtime exception: TypeError:
We found a conflict when using the jQuery.min.js package and other tools.
When those other tools do a page reload during the page load they conflict with jquery.min.js. The exact place is line 943 // Figure out if the W3C box model works as expected // document.body must exist before we can do this jQuery(function() { var div = document.createElement("div"); div.style.width = div.style.paddingLeft = "1px"; document.body.appendChild( div ); jQuery.boxModel = jQuery.support.boxModel =
Documentation site demos not working?
Demos on the Documentation site seem not to be working. Here, for example: http://docs.jquery.com/UI/Effects/Explode I click the box and nothing happens. And it seems to be many of the UI/Effect demos, making me suspect that it is the click() command not functioning. If I look at the div in Firebug, there doesn't seem to be any onclick attached to it, but I'm not sure if I should be able to see it there. Browser version info: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.7) Gecko/20091221
Tabs with Cookie
I just upgraded UI Tabs from 1.7.2 to 1.8 using the distributed custom files. The tabs are still working but can no longer retain their state across postbacks. After reverting jquery.cookie.js to the previous version, it works again.
Using .animate() with .data() -> stack overflow
Hi, I think i found a problem in jQuery. If you store the options and properties for el.animate() in el.data(), it will end up in an stack overflow. jQuery version: 1.4.2.min Firefox version: 3.6 The way i used it: I stored the information in data() on pageload. When calling the animate function, i recieve them from data(), and pass them to animate(). This works, if you only call the animate function once. (e.g. to hide a div) If you call it again in order to show the div, you will have firefox posting
AJAX loaded anchors problem
I load content to div using ajax. In that new loaded content are anchors which make another ajax requests, but they don't work. I suppose that it's caused by $(document).ready(); For example: $(document).ready(function(){ $('.dokosika').click(function(){ kod = $(this).attr('id'); pridajDoKosika(kod); return false; }); function pridajDoKosika(kod){ $.getJSON("/ajax/dokosika/"+kod,function(data){ obnovKosik(data.suma+",-",data.pocet); }); } function obnovKosik(suma,pocet){
Inifinite Loop in Sortable on Table Rows in ie8
Hey all, I've got a Rails app that uses the sortable plugin on table rows within a table. Selectively, when mousing-down on table row handles, the page will freeze in ie8, crash the active tab, and report an infinite loop. Here's a method that I created to allow me to implement this on a given page: http://pastie.org/895880 Additionally, here's the HAML code that I'm using to print the javascript from this function within the page: http://pastie.org/895896 Please let me know if any further information
jQuery cycle plugin: problem with bouncing and timing
Hi! I'm trying to use the jQuery cycle plugin but I can't make it bounce and I can't set the timing between slides... the exampleof what I'm using is located at: http://www.actionscripthero.org/wp-content/jquery-cycle/example.html The effect I want to achieve is called #s2 here: http://malsup.com/jquery/cycle/adv.html Thanks in advance! Pablo
Google Chrome Ajax issue with empty post bodies
When issuing a POST/PUT/DELETE ajax() request without a `data` parameter, Google Chrome sends "undefined" as the request body, breaking backends which expect well-formed form-urlencoded data (in this case, Ruby on Rails). We've been bitten by this today. Patch attached to a 7 months old ticket dev.jquery.com/ticket/5123 Just wanted to give a heads-up, since it's a trivial fix. The patch also enables the user to send data in bodies of requests other than POST and PUT (full HTTP methods list: http://annevankesteren.nl/2007/10/http-methods).
Position documentation mislabels "using" as "by"
In the current documentation for the position utility in jQuery UI the documentation lists a "by" option which represents a callback to be used to set the position of the element in question rather than letting the position plugin assign the position. The actual option name should be "using" since that is what is called in the plugin source. Position documentation: http://jqueryui.com/demos/position/#theming Source: http://dev.jqueryui.com/browser/trunk/ui/jquery.ui.position.js Should I copy-paste
newline between DOCTYPE and root element when using $(xxx).html() causes unexpected behaviour
The effect is that a valid xhtml fragment is not easily accessible via the jquery api when it has whitespace between the DOCTYPE and the root element in JQuery 1.4.2. Posted as bug 6380 Browser version lildiv loldiv EXPECTED all pass pass Windows Chrome 4.1 pass fail Windows IE 8 fail fail Windows IE 7 fail fail Windows Firefox 3.6.2 pass fail MacOS X Firefox 3.5.8 pass fail MacOS X Safari 4.05 pass fail Three files are used to demonstrate this problem (see attachment jqproblem.zip ). The core
Cycle Plugin - IE Specific - Weird Black Bar & Doubled Pager Buttons
IE Specific (I'm using IE7 to test) A weird black bar shows up on the right hand side of the featured area: http://fullfill.securesites.net/ Also, if you click on a link ("Our Operation" for example) then go back to the homepage it doubles the amount of dots (pager buttons) and eventually starts to cycle blank slides. Any help with these issues would be greatly appreciated. Thanks!
jQuery UI Datepicker flashes in Firefox
I stated that I had the same issue in another reported problem, but his was slightly different than mine. Apologies if I should have replied there. When using the DatePicker with changemonth, changeyear, and a daterange of more than 20 entries on Firefox 3.6.2, there is a flicker of the page background color. On the page that I am working on, there is a large flicker, and then subsequent clicks there is only a small flicker. On this demo page, there is first a flicker on the input box, and then a
width, innerWidth and tables
http://www.w3.org/TR/CSS21/tables.html#height-layout There are some adjustments to make when getting the innerWidth of tables. Tables use something closer to the old IE box model (where clientWidth includes the padding) which makes width and innerWidth incorrect. I propose fixing this by checking the display property. If it is table-ish, adjust accordingly. I can make this patch (along with everything else) when I finally get some time ....
:hidden/:visible broken in IE8
The :hidden selector is incorrect for a <button> with style display:none, after some text, in Internet Explorer (tested in IE8). There are possibly other situations in which it is broken, but that's what my testcase reduced to. It's caused by both offsetWidth and offsetHeight being non-zero, but, despite the specivity of the bug, I'd say it's a problem that should be solved in jQuery. There already seems to be a built-in workaround for <tr> elements. There's a testcase attached (it needs jQuery copying
IE6 & 7 bug with clone and/or appending
$(".multipleSelect option").live("click", function() { var thisId = $(this).attr("id").split("-"); if($(this).parent().hasClass("add-" + thisId[1])) { if(!$(this).hasClass("disabled")) { var optionClone = $(this).clone().attr("id", "remove-" + thisId[1] + "-" + thisId[2]); $(this).addClass("disabled"); if($(this).hasClass("all")) { $(".multipleSelect.remove-" + thisId[1]).find("option").remove();
ui.Datepicker has no public functions for querying whether a date is selectable
http://forum.jquery.com/topic/ui-datepicker-s-unselectable-rules-now-applicable-to-text-input-as-well I had to write a custom validation method for Datepicker's input fields that made it possible for manually entered dates to be validated against the same rules it uses to determine selectable dates. The worst part of this was dredging through $.datepicker's internal object structure to figure out how to externally reference the data stored in each datepicker instance, followed by finding the logic
incompatibility for IE8
good morning! is there any standard or format for the run. click and animate the jquery in IE8? I have a site http://www.agenciafire.com.br/index3.php the whole system works on all browsers at least in IE8 Paulo Marcus Designer Web
results.push is undefined
I'm getting this error when trying to simple traversing. results.push.apply( results, checkSet ); jquery-1.4.2.js (line 2743) I read that it might have something to do with arrays??? Any solution to this?
Altering content of title in head fails..
I'm using jQuery to make ajax calls for content, when I click on a link and pull in the new content, I want the <title> in the <head> to change. I thought that since head and body are both siblings in the DOM I could target the <title> in the same way as a <p> or any other element and write a new value in, using replaceWith() which would then change the text in the tab at the top of the browser but it doesn't seem to work. I even tried adding <title id="title_text"> and targeting #title_text, but
ui.all.css missing for jQuery UI v1.8 on Google CDN
I've been using the themeroller with the switcher tool pulled from Google's CDN successfully with v1.72. Can we get the file "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/ui.all.css" posted???? Firebug reports it as missing although everything seems to render okay, go figure?? Thanks, new 1.8 version is great! Marv
jquery for gadget development
I have used the fade in and taggle functionality for image slide show gadget using jquery. It worked correctly in ie but not gadget i can't show any images in gadget. Please provide the solution for solving this. Thanks in advance...
Dialog dialog buttons and new split buttons widget
There is a problem that I came across where having a dialog that has buttons and also contains the new button widget in the button set configuration. I posted a like to a video demonstrating the issue: http://www.utipu.com/app/invited/id/969bbbf8 Here is the source from the demo in the video above. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Untitled Page</title>
Tooltip - Hovering from link A -> B
Case: two links with images in it are next to each other. Tooltip setup: $(function() { $('a').tooltip({ track: true, delay: 250, showURL: false, showBody: " - ", fade: 350, opacity: 0.8, top: -30, positionLeft: true }); });Now if you go from link 1 to link 2 then it will fade out link 1 and delay link 2 it directly shows the title of link 2 in the tooltip eventhough still
Scripts in load() - change from 1.3 to 1.4?
Hi, I have a setup where I load html using .load() into a dialog. This html includes (document ready) scripts. The scripts were executed and everything worked fine with version 1.3.2/ui-1.7. I am now using 1.4.2/ui-1.8. The scripts are no longer executed. Why this change? What can I do to have inline scripts executed when loading the html fragment via ajax? Edit: Seems related to http://forum.jquery.com/topic/jquery-stopped-loading-script-in-1-4-2 This is quite a problem, and currently prevents
Please add jQuery 1.4 to the 'Verified API Compatibility' option
Hello, jQuery 1.4x is out for month, but we don´t have the option to release Plugins, wich are only testet / only working with jQuery 1.4x. So please add jQuery 1.4 as an Option for the "Verified API Compatibility" dialog for releasing new plugins. regards alex
Button creation javascript error in IE7
Creating a button in IE7 fails when I try to set the type to "button". See below examples: $("body").append( $("<button/>", {"id": "save", "type": "button"}).html( "Save" ) ); $("body").append( $("<button/>", {"id": "save"}).html( "Save" ) ); $("#save").attr( "type", "submit" );IE reports that the "Object doesn't support this action" for #1 and "Exception thrown and not caught" for #2.
isFunction( ) error in IE8
Attached is a document showing a screen shot from debugging a problem in IE8. Possibly this falls under the disclaimer that functions like "alert(...)" are not guaranteed to be caught, but this seems like a pretty straight forward test. I read in an object to the variable "obj". The element "E" of "obj" contains a function. In Chrome and Firefox, this is interpreted correctly as a function, and all works as expected. In IE, however, the element "E" is read in to a "[Methods]" array as seen in the
Next Page