[jQuery] tabs not working
I am using the tabs from http://stilbuero.de/jquery/tabs/ and they dont work in IE 7 for me: http://dev.studentcity.com/test.php The bar is coming up above the tabs instead of below the tabs, anyone know why this would be happening? I mean i am not icluding anything extra there. -- View this message in context: http://www.nabble.com/tabs-not-working-tf4423454s15494.html#a12617644 Sent from the JQuery mailing list archive at Nabble.com.
[jQuery] tablesorter plugin not working...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.6000.16525" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=794181919-11092007><FONT face=Arial size=2>I've tried it with multiple versions of jQuery including 1.1.3, 1.1.4, and 1.2, even referencing the jQuery file living on the tablesorter website. In IE nothing happens, no errors, but no worky. In Firefox, I get an error in the
[jQuery] 1.2/1.1 slice() vs lt(): what is preferred way to handle both of these cases?
Hi, all! i'm going through my plugins and making sure they work in 1.1.{3,4} and 1.2, and i've come across an ugly case... i use lt(), which isn't available in 1.2. Of course, lt() can be replaced by slice(), but that isn't in 1.1.x. My plugin would work in both versions if it weren't for this tiny incompatibility. What is the preferred way to check the jQuery object for cases like this? Something like if( 'slice' in jQuery.fn ) ??? How are other users dealing with this? i explicitly do not want
[jQuery] Repeat a load
Hi to everybody, I want to explain you "my little problem". I have something like this: $("#newsticker").load("file.php"); This code is very simple and works well, but now I want to repeat the file's load every 30 seconds until a timeout of 2000 seconds. How can I realize this? Thank you, bye Gabriele
[jQuery] Removing the Gray Border on the blockUI window
The BlockUI window has a thick gray border. How do you remove it? I am using a hidden div as the contents of blockUI (as shown below) and have tried setting the overlayCSS properties - but I can not get the gray border to go away. Anyone? $.extend($.blockUI.defaults.overlayCSS, { backgroundColor: '#000000',borderStyle:'none' }); var messageElement = $('#processingMessage'); $.blockUI(messageElement); Brook
[jQuery] Where is "removeAttr()" ??
Where is "removeAttr()" in the documentation API? is it gone? -- Enrique Meléndez Estrada (2367) Servicios Informáticos Organización y Servicios Internos Instituto Tecnológico de Aragón
[jQuery] jQuery 1.2 -- new clean() issue
I've been working on a bookmarklet tool which I just upgraded to 1.2 and it works on most every site but flickr.com. I don't know if I can share all the bits one might need to reproduce it but I'm putting it out there incase any of you have a similar experience ... When I append my bookmarklet html string to the page, part of the jQuery clean function is appended into the stream of html I'm inserting. Below is a sample of html after insertion to the dom. The "function (m, all, tag)..." is not mine;
[jQuery] Multiple XPath selectors, or other, for custom attributes
I currently know how to do this: $("//tr[@customID='123']").remove() ; This removes a table row that of the style: <tr customID="123" > However, these rows in this complex table also have another fashion that I've been using: <tr customID="123" aID="1" bID="2" cID="3"> How can I use Jquery to select rows that have aID="1" and bID="2", but (in this case) ignoring the customID and the cID. Thanks - Will B.
[jQuery] jQuery 1.2. and ajaxQueue plugin
I noticed that the jQuery 1.2 release broke the ajaxQueue plugin (both the release and snapshot version of it). More specifically, the error seems to be related to the change in the dequeue function. Changing line 72 in the snapshot version from "jQuery.dequeue( ajax, "ajax" + port );" to "jQuery([ajax]).dequeue("ajax" + port );" seems to fix it.
[jQuery] ajaxForm and validate question
<html> <body> Hello folks, I am using the ajaxForm plugin in combo with Jörn's validation plugin. The relevant code is below - it is called from $(document).ready(function() and it works - except for one thing. I need to click on the submit button twice in order for the validation/submit to be fired. What am I missing here? Thanks Bruce <tt>$("#cform").validate({ errorContainer: errors, errorLabelContainer: $('ol', errors), wrapper: 'li', submitHandler: function(form) { $("#cform").ajaxForm(options);
[jQuery] Joern's autocomplete plugin with jquery 1.2
Hopefully this will help someone... I noticed that Joern's autocomplete plugin uses the .eq() function which was deprecated and removed in jQuery 1.2. I was able to replace the .eq() calls with .slice() calls and get things running. Hope this helps somebody else. Here are the two locations to change: Line 658: Original: listItems.removeClass().eq(active).addClass(CLASSES.ACTIVE); Updated: listItems.removeClass().slice(active-1,active).addClass(CLASSES.ACTIVE); Line 690: Original: listItems.eq(0).addClass(CLASSES.ACTIVE);
[jQuery] Using wrap() and then removing the wrapped element without removing the children
Easy Question I think. If I use (from Jquery 1.2): $("#myElem").wrapAll("<div id='myDiv'></div>"); To wrap the div 'myDiv' around 'myElem', how can I later remove that div without removing the pre-existing myElem and any other contents of that div? Brook
[jQuery] Newbie Question: Javascript Never Gets Called?
I'm a Javascript newbie, but I do have some Javascript working, and I have the jQuery demo working. Here's the code I have on one of my html pages to load javascript: ----- <script src="http://localhost:8888/js/jquery.js" type="text/ javascript"></script> <script type="text/javascript" src="http://localhost:8888/js/ jquery.selectCombo1.2.1.js"></script> <script type="text/javascript" src="http://localhost:8888/js/ your_foundry.js"></script></head> ----- Here's the _entire_ contents of the "your_foundry.js"
[jQuery] IE 7(mostly likey all 6 too) issue with added content with javascript dynamically
I have a script that reorder some content an this content includes javascript that runs. I basically take the html/javscript text and put it into a variable in the correct order and then i empty out the current content and replace is with the new content. Now if FF, this works fine because the javscript gets ran when i load the content dynamically but in IE 7 the javscript does not seems to get run and was wondering if this is an issue known about IE? -- View this message in context: http://www.nabble.com/IE-7%28mostly-likey-all-6-too%29-issue-with-added-content-with-javascript-dynamically-tf4416607s15494.html#a12597220
[jQuery] IE6 Rendering Problem with SlideDown?
Hi, I've been building a site, and we have modules that can be collapsed/ expanded. This works fine in Firefox, but of course IE6 has some issues with this. I'll explain the problem, and you can check it yourself at http://artist.fabricmg.net (password is music123). Scroll down to the modules (with dark grey header) and click on the little icon to the very right of the dark grey bar, that icon should either expand or collapse the module. The problem is, in IE6, when the module is collapsed, and you
[jQuery] New plugin: Listify
I've just release a little plugin that I wrote for use in a new project. It gracefully upgrades tables that contain rows with a single link to be a little more user friendly (enlarging the click area and applying a hover class). Since I'm using Thickbox, I also made sure it plays nice with Thickbox links. Source and example are available here: http://www.dyve.net/jquery/?listify -Dylan
[jQuery] How to this non-XPath style...
(I posted this yesterday, but it never showed up... But since today's update on XPath being removed (and I don't need *another* .js or .css link!), I'd like to know how to do it non-XPath style, if there's a way...) I currently know how to do this: $("//tr[@customID='123']").remove() ; This removes a table row that of the style: <tr customID="123" > However, these rows in this complex table also have another fashion that I've been using: <tr customID="123" aID="1" bID="2" cID="3"> How can I use Jquery
[jQuery] namespaced events demo behaving erratically
Hi there, loving the new release so far, cheers =] I'm on the wiki looking at the namespaced events feature (FF-latest release) and nothing seems to happen. http://docs.jquery.com/Release:jQuery_1.2/Events However I left the window open and did some work then came back to it and it worked! As soon as I reloaded the iframe it stopped again. Very nice feature to have though, the possibilities have made my brain hurt. Rob
[jQuery] Problem with ClueTip: Flash-Elements flickers when rollover
In Firefox all Flash-Elements on the page start flickering when the mouse rolls over a cluetip-element. Any hints? -- View this message in context: http://www.nabble.com/Problem-with-ClueTip%3A-Flash-Elements-flickers-when-rollover-tf4260255s15494.html#a12123559 Sent from the JQuery mailing list archive at Nabble.com.
[jQuery] 1.2 stopping animation
I heard from someone that the jQuery team or someone was working on being able to stop an animation and revert back to the old state. This is one limitation of jQuery that is disappointing and seem to still be a problem in 1.2. The example i gave is that i don't know how to recreate the effect on the mootools home page where if you hover over a link of the right side menu and the animation start but you leave before it fully completes, it stop and goes back before fully completing. This is not a
[jQuery] Joern's autocomplete plugin with jquery 1.2
Hopefully this will help someone... I noticed that Joern's autocomplete plugin uses the .eq() function which was deprecated and removed in jQuery 1.2. I was able to replace the .eq() calls with .slice() calls and get things running. Hope this helps somebody else. Here are the two locations to change: Line 658: Original: listItems.removeClass().eq(active).addClass(CLASSES.ACTIVE); Updated: listItems.removeClass().slice(active-1,active).addClass(CLASSES.ACTIVE); Line 690: Original: listItems.eq(0).addClass(CLASSES.ACTIVE);
[jQuery] Does 1.2 now negate the need for liveQuery?
Hi all I remember something being mentioned that 1.2 would remove the need for the liveQuery plugin, binding relevant events to elements added in a DOM update. Has this happened, or will I still need to use liveQuery after an update?
[jQuery] Possible Animate Bug
There seems to be an animate bug with jQuery 1.2. Try animating the css left value of a relatively or absolutely positioned element. For instance, I have an object with a css left value of "-880px". When I call .animate( {left:"-1760px"} ,300, function(){ alert( $ (this).css('left')}), the callback will result in "-2640px", not "-1760px" like it should be. The above code worked in version 1.1.2, not 1.2.
[jQuery] "too much recursion" in newest droppable - jQueryUI
I've posted a problem that I'm having with droppables and jQuery here: http://groups.google.com/group/jquery-ui/browse_thread/thread/f63eec69a7a0afe8 It is still a problem in 1.2 - There is an example html page in the discussion. Using firebug, you will see a recursion timeout after you drop a red square onto a green square. The problem is that the drop function is repeatedly being called until timeout. Remove the absolute positioning from the parent div, and the problem goes away. However, I need
[jQuery] Slide effect bugs in IE 6 and 7 since version 1.1.3
Hi all, I have issues with the slide effect since the version 1.1.3 (same issue with 1.1.4): _ Flicker effet when the div is sliding up, just before disappearing. (working fine with 1.1.2) _ The slide effect don't apply to a div with a relative position when the doctype is strict Everything is working fine with firefox, but with internet explorer it's a different story. It there sonething wrong in my code or is it a bug? You can find a demo here : http://sd-5269.dedibox.fr/temp/jquery/bug112T.html
[jQuery] ThickBox 3 - Strange Bug in IE
Hi We have a strange problem with Thickbox 3 using Internet Explorer http://www.cloeguitars.it/company/corso-di-liuteria-cloe With Firefox is all OK, but if you try to open an image at the bottom of the page Internet Explorer is unable to position the window correctly. The problem happens only in this page... Anyone has a solution!? Oliver
[jQuery] <option disabled> - emulation of missing support in IE
Hi all, Is there any way to emulate missing support for <option disabled="disabled"> functionality in IE 6 & 7 with jquery? E.g. <select name="destination" id="destination"> <option value="xxx">Anywhere</option> <option value="" disabled="disabled">EUROPE</option> <option value="">ASIA</option> <option value="" disabled="disabled">AFRICA</option> <option value="">AMERICA</option> <option value="" disabled="disabled">PACIFIC</option> <option value="">ATLANTIC</option> </select> Thank you.
[jQuery] a problem with 1.1.4 and binding click function
I dont know if this is a problem in jquery or have I did something wrong. Please take a look at this code it is for a gallery of a sort, What I want to achieve is that when image with class poster_image is clicked the div with class poster_info is shown. But what happens is that there are more of poster_holders on a page and it simulates for every poster_holder class a click but only to the current poster_holder, resulting in constant showing and hiding of the poster_info class the same number of
[jQuery] Sort elements problem
Im trying to recreate tablesort but having issues when clicking col2. <html> <head> <meta http-equiv="Content-Language" content="en" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="jquery.js"></script> </head> <body> <div ID="col1"> COL1 </div> <div ID="col2"> COL2 </div> <div id='Foo'> <p class='items'>4<span class='second'>1</span> <p class='items'>2<span class='second'>3</span> <p class='items'>R<span class='second'>2</span>
[jQuery] Corner Plugin affects layout
When I apply the corner plugin to an element on the page, the layout is affected when I hover over a link with padding. This only seems to occur in Internet Explorer (IE 6 and 7), and I am unable to find out the cause. To replicate, go to http://www.nelctp.nhs.uk Resize the browser window (making it bigger illustrates the problem better), the boxes in the middle should move (to stay in the centre), but they don't. Then mouse over one of the links on the right. The right box moves to the correct position
[jQuery] Thickbox loading image twice
If cache is disabled, you might use webdeveloper to try out.
[jQuery] Jorn's validation library, validate against default value
Hi all, We've got two input boxes on a form for the user to type their name in to. The client has requested "Forename" and "Surname" appear in these boxes by default as a hint to ensure they know what goes in which box. I want to validate these fields using Jorn's validation to ensure that they are not just the default values. Either by doing exactly this (preferable as I could re-use it), or checking they don't say "Forename" or "Surname" would be fine. What would be the best way of going about
[jQuery] 1.2 out?
I just grabbed http://jquery.com/src/jquery-latest.js and the header of the file says: /* * jQuery 1.2 - New Wave Javascript * * Copyright (c) 2007 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * $Date: 2007-09-10 15:45:49 -0400 (Mon, 10 Sep 2007) $ * $Rev: 3219 $ */ Is 1.2 officially out? YEAH! :-)
[jQuery] Thickbox 3.1: Transparency issues in IE6
Hi folks, I've just started using thickbox 3.1 and I notice that transparencies are *not* working in IE6. Is anyone else having this issue? I've not had this issue in the past, so it's confusing me. The CSS appears to be correct to me, but for some reason, the background refuses to be transparent. Can anyone offer any advice? Thanks heaps, Chris
[jQuery] AJAX GET from an higher directory. FF Yes IE No
I don't even know if this is possible but I'm looking to get a page in an upper directory via an AJAX call. The following works in FireFox, but Internet Explorer throws a "Permission Denied". $(this).find('a').click(function(){ $.get("../ajaxtest-content.html", function(data){ alert("I am here and I exist"); }); }); Is there any rhyme or reason to this or is it just impossible to load a file from a different directory in IE?
[jQuery] remove jScrollPane
Hi, I've used the jScrollPane Plugin in my Intefaces, and i have a problem. Every time that I resize my window, i also resize my main div, to stay with the same page's size, but when a resize the div that contains the jScrollPane method, it doesn't fix the height. What I would like to do is when I resize, I would remove the jScrollPane and attribute again the jScrollPane method. Can somebody help me?.
[jQuery] AJAX GET from an higher directory. FF Yes IE No
I'm wondering if this is even possible. Essentially I'm looking to see if a file in an higher directory exists: $(this).find('a').click(function(){ $.get("../ajaxtest-content.html", function(data){ alert("I am here and I exist"); }); }); With FireFox, this works perfectly, but I keep getting a generic Permission Denied error from IE.
[jQuery] why is code working on Firebug console, but not in script file?
I'm a javascript novice and I'm working with the jMaps plugin for jQuery to add Yahoo Maps to a site. For basic maps, the plugin is working great; however, I'm having trouble getting its addPoint function to work. When I try the following script, the map displays but the point doesn't: $('document').ready(function(){ $('#jmap').jmap({ provider: 'yahoo', maptype: "map", zoom: 5, center: [18.335298917917967,-64.73007202148438]}); $('#jmap').addPoint('18.3437','-64.7152', false, 'Point1', false, false);
[jQuery] Need plugin to determine # of chars
Guys, I need a plugin that does the following: - Displays a running total of the chars being entered in a field (input or textarea) - Enforces a char limit I could've sworn I saw a plugin that does this. Anyone seen this? Rey
[jQuery] XML > HTML
I've got some code like this. $.get('courseproviders.asp',function(data) { alert(data.text()) }) The ASP page returns XML. I guess that the callback is an xmlDocument. How can I convert that to HTML. ie. I'd like to return <root> <option>foo</option> <option>foo2</option> </root> as a string.
Next Page