[jQuery] updated Tablefilter Feedback please

2007-11-19 Thread James Dempster
Sometime back I created the first test version of table filter. Quite some time has past and I've taken on lots of the ideas that where mentioned. I'm now back again. If people could take a look at the work I've done and provide feedback. This is currently a headless plugin. Event driven only.

[jQuery] Re: HELP: Debugging Issue

2007-11-19 Thread James Dempster
sounds horrid but you can put alert or console.log throughout your code see where it gets to last before hanging On Nov 19, 5:07 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On one page, Firefox throws the a script is taking too long message. On clicking 'Debug Script', it points to the

[jQuery] Re: HELP: Debugging Issue

2007-11-19 Thread James Dempster
oops... or alternatively use break points and step though your coding using the debugger in firebug On Nov 19, 5:07 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On one page, Firefox throws the a script is taking too long message. On clicking 'Debug Script', it points to the following line

[jQuery] Re: Appending text to an attribute

2007-11-19 Thread James Dempster
I don't think I full understand where your data is or where it's coming from. But heres an example from what I can understand. $('ul.actions a').each(function() { var $this = $(this); $this.attr('href', $this.attr('href') + '#somewhere'); }); On Nov 18, 8:55 pm, Eric Lanehart [EMAIL

[jQuery] Autosuggest

2007-11-19 Thread Gordon
I currently have a brief to develop a system to help people find addresses in a list loaded into a web page. At the moment they're displayed as a single long list (a ul), and the oser clicks the one he wants to use. The problem is that in some cases this list can run to hundreds of entries.

[jQuery] Re: Add a li based on updates the database

2007-11-19 Thread James Dempster
take a look at http://docs.jquery.com/Ajax Maybe json would be the easiest way to send the data to the client, php has a nice functions for json http://uk2.php.net/manual/en/function.json-encode.php On Nov 19, 3:09 am, Chris [EMAIL PROTECTED] wrote: Okay, So i have a basic shopping cart/order

[jQuery] Re: .append() is not inserting data into my div

2007-11-19 Thread James Dempster
append expects html data starting with a html element e.g div or an element please check that this is the case. can you provide an example of what data contains? On Nov 18, 8:31 pm, Shawn [EMAIL PROTECTED] wrote: Hello, this code doesn't seem to insert or append any HTML when I call it, but

[jQuery] Is there a problem with the demos - the droppables don't seem to work

2007-11-19 Thread will________
Is there a problem with the demos - the droppables don't seem to work. The draggables make copies of themselves and can't be dragged, and clicking on the droppables just puts text on top of them.

[jQuery] Re: Accordion or jQuery broken if the accordion data is loaded dynamically

2007-11-19 Thread Mark Lacas
Got it! Turns out unaccordion() is your friend when finished with an accordion group. Most pages won't need this because a reload of the page fixes things. Dynamic loading of accordion blocks does need to unaccordion() when finished with the accordioned data. If you don't call

[jQuery] Re: Accordion or jQuery broken if the accordion data is loaded dynamically

2007-11-19 Thread Mark Lacas
Got it! Turns out unaccordion() is your friend when finished with an accordion group. Most pages won't need this because a reload of the page fixes things. Dynamic loading of accordion blocks does need to unaccordion() when finished with the accordioned data. If you don't call

[jQuery] Re: Preloading images with a callback function

2007-11-19 Thread Bodom78
I was about to post the exact question, Basically I'm changing the src value and fading in new images but I don't want the fade to begin until the image has loaded. Anyone? On Oct 17, 4:40 pm, Steax [EMAIL PROTECTED] wrote: I understand how topreloadimages. Well, at least to an extent

[jQuery] Suggest a plugin for slider-like construction

2007-11-19 Thread Sagari
Greetings, Could you please suggest a plug-in to create the following slider-like construction: - two vertical areas of content - a vertical control (narrow rectangular area) separating the two content areas - when dragging control left or right, the result is the two content area are resized

[jQuery] Re: Select change event on item 1 not firing

2007-11-19 Thread ISSSSI
rayfidelity, Thanks for the prompt reply. I still get the same issue first item when selected does not redirect. Regards Isamil -- View this message in context: http://www.nabble.com/Select-change-event-on-item-1-not-firing-tf4822557s27240.html#a13829794 Sent from the jQuery General

[jQuery] Re: How to reproduce this effect ?

2007-11-19 Thread janniknilsson
Try this: style type=text/css #img_1 { width:165px; height:190px; background:#fff url(images/8.jpg) no- repeat; overflow:hidden; position:absolute; } #img_1_box { position:absolute; width:165px; height:190px; } #img_1_bg{ position:absolute; z-index:9998; width:165px; height:190px;

[jQuery] Re: How to reproduce this effect ?

2007-11-19 Thread Polskaya
Hi, you might want to take a look at jQuery's slideUp and slideDown efect: http://www.codylindley.com/blogstuff/js/jquery/# Example two might get you running... Success :) On Nov 19, 8:47 am, Armand Datema [EMAIL PROTECTED] wrote: Hi I have to redesign a site to a new cms and Im running

[jQuery] jQuery + Interface Slideshow = IE death

2007-11-19 Thread DesignPunk
Hi guys I'm a noob on here, so hi to everyone first of all. Also, I'm a bit of a noob to jQuery, although I've been a designer for around 2 years so have a good understanding of XHTML / CSS etc, plus I'm a junior level devloper in .Net using VB. Anyway, that's a bit about me! Ok, the issue I

[jQuery] how to use :empty selector

2007-11-19 Thread Cyril C
hi all, i want to select all empty tag input type='text' . I try this : $(document).ready(function() { $(input[type=text]:empty).each(function (i) { alert(vide); $(this).val(i); }); }); But ALL tag input type='text' are selected not ONLY the EMPTY one.

[jQuery] Re: Include javafile

2007-11-19 Thread Muhammad Mohsin
thanks seedy for the help. now i m including all js file in bottom of page. but jquery seems to have problem in bottom. do u know wht is the issue

[jQuery] My jquery-Project

2007-11-19 Thread [EMAIL PROTECTED]
Hello everybody, first of all a big thank you to everybody who contributes to this mailinglist - it's a lot of help just to read through the comments! Now I want to present my project which makes massiv usage of the brillant jquery-library! It's called TUBESEARCH and you can find it here:

[jQuery] Re: how to use :empty selector

2007-11-19 Thread James Dempster
:empty Matches all elements that are empty, be it elements or text. I think what your checking is value so it isn't covered by this selector. I think you'd have to loop though them all checking the value. $(document).ready(function() { $(input[type=text]).each(function () { if

[jQuery] Re: Autosuggest

2007-11-19 Thread Gordon
http://www.vulgarisoip.com/2007/06/29/jquerysuggest-an-alternative-jquery-based-autocomplete-library/ demonstrates a plugin that's really close to what I want, it will pick up on elements where the word entered isn't the first word in the strings being searched. Unfortunately, it still requires

[jQuery] Re: Appending text to an attribute

2007-11-19 Thread Wizzud
Or simply... $('ul.actions a').each(function() { this.href += '#somewhere'; }); If you want to ensure that the href does not already have a bookmark attached then you may want to add a test before changing the href... $('ul.actions a').each(function() { if(this.href.indexOf('#') 0)

[jQuery] Re: jQuery 1.2.1 errors with Interface

2007-11-19 Thread alexanmtz
Im having the same issue, if you fix the problem, please report here... I'll do the same when I discovered... On Nov 5, 9:28 pm, Nicolae Namolovan [EMAIL PROTECTED] wrote: I'm doing $('#some').SlideInRight(500); The effect is working, but after I start to get millions of the same errors

[jQuery] Re: Transparent PNG backgrounds with superfish

2007-11-19 Thread Olivier Percebois-Garve
Hi Joel, I just want to thank you for your answer. I have no Internet at home anymore so I'm pretty slow with feedback... Olivier On Nov 15, 2007 10:06 PM, Joel Birch [EMAIL PROTECTED] wrote: Hi Olivier, AFAIK, IE can only apply one filter at a time, so when you apply the PNG fix that's

[jQuery] $.getJSON() problem

2007-11-19 Thread Aljosa Mohorovic
i have a problem with $.getJSON(), nothing is logged in firebug console although i can see that correct data is returned in response (in firebug) for code: $.getJSON(url, function(data){ console.log(data); }); same code, but using $.get instead $.getJSON works as expected: $.get(url,

[jQuery] Re: Suggest a plugin for slider-like construction

2007-11-19 Thread Richard D. Worth
It sounds like you're looking for a layout control called a splitter. Here's one: http://methvin.com/jquery/splitter/ - Richard On Nov 19, 2007 3:49 AM, Sagari [EMAIL PROTECTED] wrote: Greetings, Could you please suggest a plug-in to create the following slider-like construction: - two

[jQuery] Re: HELP: Debugging Issue

2007-11-19 Thread fambizzari
Thanks. On Nov 19, 2:03 pm, James Dempster [EMAIL PROTECTED] wrote: oops... or alternatively use break points and step though your coding using the debugger in firebug On Nov 19, 5:07 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On one page, Firefox throws the a script is taking too

[jQuery] Re: how to use :empty selector

2007-11-19 Thread Brandon Aaron
You can use the filter method to select what you need. It would look something like this: $(document).ready(function() { $('input[type=text]').filter(function() { return !!$(this).val(); }); }); -- Brandon Aaron On Nov 19, 5:42 am, James Dempster [EMAIL PROTECTED] wrote: :empty

[jQuery] Re: Target secon

2007-11-19 Thread skube
You are correct. I was trying the example in my actual code, which had another child before the first p that I failed to see. Thanks guys for your help and time!

[jQuery] tinyMCE jquery equivalent

2007-11-19 Thread FrankTudor
Hi all I am looking for a tinyMCE jquery equivalent (if one exists)... Thanks, Frank

[jQuery] Re: serializeHash() instead of serializeArray()

2007-11-19 Thread Dan G. Switzer, II
I need some help by a jQuery internals hacker, because I don't really know how to add this particular feature that I need to jQuery: Sometimes I want to serialize a form to a Hash/Object in the form of: { key: 'val', key2: 'val2' } My Field plug-in offers this functionality:

[jQuery] fValidate breaks jQuery

2007-11-19 Thread Gordon
I am making an autocomplete text box for a page that also uses fValidate for form validation. As much as I might want to I can't ditch fValidate in favour of another library as there isn't time, but it seems that fValidate refuses to play nice with jQuery. Trying to add content to the page with

[jQuery] SITE SUBMISSION: iFilm.com

2007-11-19 Thread Rey Bango
Another high-profile jQuery site: iFilm.com/Spike Digital Entertainment – Leading online video network, serving user-uploaded and professional content to over ten million viewers monthly. Rey...

[jQuery] hide/show (trying to prevent inline loop code)

2007-11-19 Thread FrankTudor
Hi all, I an trying to create a simple hide/show toggle with jQuery, but My content loops over a query and so when I test it it opens all my table blocks (since they have Identical code duplicated to the length of the records). So then I got cleaver and created a variable that generates a random

[jQuery] Re: hide/show (trying to prevent inline loop code)

2007-11-19 Thread Priest, James (NIH/NIEHS) [C]
I'm working on something similar - can you post your HTML and jQuery code?? Here's my thread: http://groups.google.com/group/jquery-en/browse_thread/thread/4c30c5ae19 ce901c/d6be93a0dd4fc205?lnk=gstq=hiding+checkbox#d6be93a0dd4fc205001 Jim -Original Message- From: FrankTudor

[jQuery] Re: hide/show (trying to prevent inline loop code)

2007-11-19 Thread FrankTudor
I'm sorry I won't be able to post my code till tonight... But I can sudo code it here: Note: I use coldfusion... (Starting loop) cfset letEmRide = randomize(, ) Picking a random number script $(documnet).ready(Function) { $(.collapseThisPuppycfoutput#letEmRide#/cfoutput).hide();

[jQuery] Re: tinyMCE jquery equivalent

2007-11-19 Thread Jake McGraw
WYMeditor - jake On Nov 19, 2007 9:46 AM, FrankTudor [EMAIL PROTECTED] wrote: Hi all I am looking for a tinyMCE jquery equivalent (if one exists)... Thanks, Frank

[jQuery] Re: tinyMCE jquery equivalent

2007-11-19 Thread Gordon
There is WYMeditor, but last time I saw it in action it wasn't nearly as powerful as TinyMCE. I don't think there's any particular reason why the two scripts wouldn't play nicely though, is there any particular reason you want a jQuery based editor? On Nov 19, 2:46 pm, FrankTudor [EMAIL

[jQuery] Re: tinyMCE jquery equivalent

2007-11-19 Thread Jake McGraw
FYI tinyMCE w/ plugin based GZip, I was able to get the entire library down to 46KB for the limited subset of functions I was using. - jake On Nov 19, 2007 11:23 AM, Gordon [EMAIL PROTECTED] wrote: There is WYMeditor, but last time I saw it in action it wasn't nearly as powerful as TinyMCE.

[jQuery] Re: dimensions plugin: relativeTo not working?

2007-11-19 Thread Brandon Aaron
The relativeTo needs to be an offsetParent of the element you are trying to get the offset of. Otherwise you need to get the offset of both the elements and do the math. BTW ... jQuery 1.2.x and the upcoming Dimensions 1.2 does not have a relativeTo option. -- Brandon Aaron On Nov 17, 9:41 am,

[jQuery] Re: cluetip events

2007-11-19 Thread Graeme B. Davis
What if you want to make a cluetip sticky only when clicked, otherwise just show a normal cluetip? example: I want to show tips with content they can click (email addy, etc) if they want... but by default the cluetip should just go away if the mouse moves elsewhere (outside of the a href). I

[jQuery] Re: tinyMCE jquery equivalent

2007-11-19 Thread FrankTudor
Thank you I am going to try WYMediator (I want to stay with a jQuery solution) just to stay uniform, although I have used TinyMCE on several projects and it is a solid solution. Frank On Nov 19, 10:26 am, Jake McGraw [EMAIL PROTECTED] wrote: FYI tinyMCE w/ plugin based GZip, I was able to get

[jQuery] IE 6 problem with AJAX

2007-11-19 Thread kafteji
Hi all I have a serious problem with jquery I have an ajax call to update a region with some HTML that contains itself an in-place-editor script (jquery.jeditor). when executing the js loaded from ajax which contains $ (document).ready( ) the page turns to blank with only this : script

[jQuery] Re: replace XPath functions for XML parsing

2007-11-19 Thread chrismarx
anybody? On Nov 13, 11:50 pm, chrismarx [EMAIL PROTECTED] wrote: I'd like to keep up with the new jquery release and abandon my xpath code for parsing xml, but I haven't seen anything that will do what i need. Here's an example of what i did with xpath: //xml ?xml version=1.0

[jQuery] Working with cluetip and validate

2007-11-19 Thread Alessandro Feijó
I just set a form using both plugins (jquery.validate.js and jquery.cluetip.js) Both use Title to set his content. So, a natural conflit is heppening. The cluetip title (before the pipe) its been the actualy content of validate red warning string. How can I circunvent that? If I can give a

[jQuery] Re: Is there a problem with the demos - the droppables don't seem to work

2007-11-19 Thread reza khanmirzaee
yes i have this question too !!! On Nov 19, 2007 11:10 AM, will [EMAIL PROTECTED] wrote: Is there a problem with the demos - the droppables don't seem to work. The draggables make copies of themselves and can't be dragged, and clicking on the droppables just puts text on top of them.

[jQuery] Re: Selectors in IFrame

2007-11-19 Thread Flesler
It's at: http://docs.jquery.com/Traversing/contents Did iFrameTable.document... work? I thought it was iFrameTable.ownerDocument maybe both work.. Anyway... that one was the jQuery-way to do that... I'm glad it helped. Ariel Flesler On Nov 18, 8:21 pm, chrismarx [EMAIL PROTECTED] wrote:

[jQuery] Re: Tab that links to another page

2007-11-19 Thread Owen Leonard
I must be doing something wrong: http://zivotdesign.com/examples/jquery/tab-href.html -- Owen

[jQuery] jQuery Bandwagon! Wohoo!

2007-11-19 Thread TunaSandwich
Hello Everyone, I just hopped on and I'm working on the following functionality so if there are any examples or tutorials that do anything like this I'd love to hear about them. I realize I will eventually figure all this out but if anyone knows of any working models, examples that are close to

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-11-19 Thread Erlend Schei
Released the 0.4 version of jQuery lightBox plugin. Lovely, Leandro! The visibility stuff was marvellous, and I'm quite annoyed over not having thought of it myself :) The background truly benefits from not jumping up and down with elements being displayed as none. May I suggest that you add

[jQuery] Magnify pictures

2007-11-19 Thread MarkL
Hi Everyone, I was looking at the magnify example at http://docs.jquery.com/UI/Magnifier , but i cant seem to get it to work myself. Ive tried copying the code and download the script files such as fx.js and fx.magnifyer.js etc like the demos have on the demo page but still no

[jQuery] Re: Scrollable table sorter

2007-11-19 Thread Steffan A. Cline
on 11/17/07 10:44 AM, Steffan A. Cline at [EMAIL PROTECTED] wrote: Can table sorter be configured to scroll add have expandable/shrinkable columns like ExtJS? bump Thanks Steffan --- T E L 6 0 2 . 7 9 3 . 0 0 1 4 | F A X 6 0

[jQuery] Re: tinyMCE jquery equivalent

2007-11-19 Thread Cloudream
http://www.wymeditor.org/en/ On Nov 19, 10:46 pm, FrankTudor [EMAIL PROTECTED] wrote: Hi all I am looking for a tinyMCE jquery equivalent (if one exists)... Thanks, Frank

[jQuery] (this) question

2007-11-19 Thread milkshake
Hello, a beginners question: */ JS - */ $('.wallpaper').each(function(){ $(this).find('.images .anim').hide(); $(this).find('.buttons .anim').click(function(event){ $('p').toggleClass( 'rainbows' );

[jQuery] Re: Autosuggest

2007-11-19 Thread kef
Instead of using one array of csv data, why not use nested arrays? On Nov 19, 6:48 am, Gordon [EMAIL PROTECTED] wrote: http://www.vulgarisoip.com/2007/06/29/jquerysuggest-an-alternative-jq... demonstrates a plugin that's really close to what I want, it will pick up on elements where the word

[jQuery] Re: .append() is not inserting data into my div

2007-11-19 Thread kef
Most of the problems I've personally had with .append is when my xhtml is malformed or I'm not escaping something properly. On Nov 19, 5:20 am, James Dempster [EMAIL PROTECTED] wrote: append expects html data starting with a html element e.g div or an element please check that this is the

[jQuery] Re: QuickSearch plugin - triggering events

2007-11-19 Thread Sean O
Bump. I thought I got somewhere over the weekend, but am still 1-2 off on each count. The plugin project hasn't been updated in a while... SEAN Sean O wrote: Hi, I'm trying to modify RikRIkRik Lomas' excellent QuickSearch plugin. I want to set up clickable links to remove all

[jQuery] Re: (this) question

2007-11-19 Thread Michael Geary
Every function call has its own this - that's just the way JavaScript works. To fix it, assign this - or better yet in your case, $(this) - into a variable outside the click function. We can also avoid the repeated calls to the same selector by using another variable:

[jQuery] Re: jQuery Ajax throws parseerror in IE

2007-11-19 Thread 1Marc
I solved this problem by modifying the results of Google's Ajax method. GDownloadUrl(XMLPath, function(data, responseCode) { if(responseCode == 200) { var xml = GXml.parse(data); $('node', xml.documentElement); } else if(responseCode == -1) {

[jQuery] Re: Working with cluetip and validate

2007-11-19 Thread Karl Swedberg
Hi Alessandro, You can already set a custom attribute with clueTip. Something like this, perhaps: $('mylink').cluetip({splitTitle: '|', titleAttribute: 'cluetip'}) input cluetip='My Title|my detail' title='whatever you want' Hope that helps. --Karl _ Karl Swedberg

[jQuery] Re: Tab that links to another page

2007-11-19 Thread Klaus Hartl
On Nov 19, 4:17 pm, Owen Leonard [EMAIL PROTECTED] wrote: I must be doing something wrong: http://zivotdesign.com/examples/jquery/tab-href.html -- Owen I was incorrectly assuming you were using UI Tabs/Tabs 3. With Tabs 2 it should work like this: $('#bibliodescriptions').tabs({

[jQuery] Re: replace XPath functions for XML parsing

2007-11-19 Thread Karl Swedberg
On Nov 19, 2007, at 7:23 AM, chrismarx wrote: anybody? On Nov 13, 11:50 pm, chrismarx [EMAIL PROTECTED] wrote: I'd like to keep up with the new jquery release and abandon my xpath code for parsing xml, but I haven't seen anything that will do what i need. Here's an example of what i did

[jQuery] Re: IE7 Tabs are invisible

2007-11-19 Thread Klaus Hartl
On Nov 18, 9:30 pm, Moonwalker [EMAIL PROTECTED] wrote: Hello, I already did a search query on the site looking for other people having the same problem, but couldn't find any. My problem is the fact that I use FireFox as default browser, so I don't see any problems until I decide do check

[jQuery] Re: Positioning an element towards the bottom, within limits

2007-11-19 Thread Glen Lipka
Have you checked out the dimensions plugin? It has lots of power to place things exactly where you want them. Even relative to the viewable area. http://brandonaaron.net/docs/dimensions/ Glen On Nov 18, 2007 12:41 PM, S. Robert James [EMAIL PROTECTED] wrote: I'd like to position an element

[jQuery] Re: I'm confused on how to parse XML using jquery's ajax feature.

2007-11-19 Thread Glen Lipka
Pretend it's html. As if it was a div and a span. It works the same way. $(mtemplate receiver).text() Glen On Nov 18, 2007 7:04 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ?xml version=1.0 encoding=ISO-8859-15? pmtemplate recieverEnter Your Friends name Here/reciever

[jQuery] Re: HELP: Debugging Issue

2007-11-19 Thread Josh Nathanson
A script taking too long error generally means that you are trying to bind event handlers to too many elements, or just overloading the capability of jquery in some way. You may want to look at going old school and putting events inline in your html markup: a href=whatever onclick=myfunction

[jQuery] Re: I need use bgIframe plugin with ClockPick puglin

2007-11-19 Thread Josh Nathanson
Andres and anyone else using ClockPick, I've released a new version, 1.2. It adds support for the bgIframe plugin by setting a configuration variable when calling ClockPick. All the details plus downloads for the new version can be found here:

[jQuery] Re: (this) question

2007-11-19 Thread Feijó
why do you use $ in JS variables? get used to after long years in php? :) Feijó - Original Message - From: Michael Geary [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Monday, November 19, 2007 3:14 PM Subject: [jQuery] Re: (this) question Every function call has its

[jQuery] Re: (this) question

2007-11-19 Thread Andy Matthews
Using the $ in a js variable (in the jQuery world) is generally a sign that the variable contains a jQuery object. It's just a nice way of helping the programmer know what to expect. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Feijó Sent:

[jQuery] Re: (this) question

2007-11-19 Thread Josh Nathanson
why do you use $ in JS variables? get used to after long years in php? :) That's a way to remember that the variable represents a jQuery object. Not required but some people like to do that. -- Josh

[jQuery] Re: Autosuggest

2007-11-19 Thread Sean O
Gordon, I think the quickSearch plugin: http://rikrikrik.com/jquery/quicksearch/ will help you. SEAN O __ www.sean=o.com Gordon-35 wrote: http://www.vulgarisoip.com/2007/06/29/jquerysuggest-an-alternative-jquery-based-autocomplete-library/ demonstrates a plugin that's

[jQuery] Re: (this) question

2007-11-19 Thread Feijó
Indeed!!! Nice style Will adopt it thanks Feijó - Original Message - From: Andy Matthews [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Monday, November 19, 2007 4:42 PM Subject: [jQuery] Re: (this) question Using the $ in a js variable (in the jQuery world) is

[jQuery] Re: $.getJSON() problem

2007-11-19 Thread Josh Nathanson
Usually this means that your JSON data has an error in the formatting somewhere - perhaps a missing or extra comma. If JSON data cannot be evaluated successfully, it fails silently. -- Josh - Original Message - From: Aljosa Mohorovic [EMAIL PROTECTED] To: jQuery (English)

[jQuery] Re: IE7 Tabs are invisible

2007-11-19 Thread Moonwalker
Ok I found the solution. It appears like I'm not using the last CSS theme. I downloaded the one here: http://dev.jquery.com/view/trunk/themes/dark/dark.tabs.css And it worked fine. Just one final question. Is it possible to use the link in my applications? So let's say: link rel=stylesheet

[jQuery] Re: I need use bgIframe plugin with ClockPick puglin

2007-11-19 Thread [EMAIL PROTECTED]
Works great!!! Many thanks for your time!!! On 19 nov, 14:34, Josh Nathanson [EMAIL PROTECTED] wrote: Andres and anyone else using ClockPick, I've released a new version, 1.2. It adds support for the bgIframe plugin by setting a configuration variable when calling ClockPick. All the

[jQuery] Re: I'm confused on how to parse XML using jquery's ajax feature.

2007-11-19 Thread Jeff
Uh, why are you sending that email out? That looks like you are phishing. On Nov 19, 12:34 pm, Glen Lipka [EMAIL PROTECTED] wrote: Pretend it's html. As if it was a div and a span. It works the same way. $(mtemplate receiver).text() Glen On Nov 18, 2007 7:04 PM, [EMAIL PROTECTED]

[jQuery] New plugin: Jquery Fx Queues

2007-11-19 Thread [EMAIL PROTECTED]
Hi, Since I needed a global queueing system for jquery's effects for a project, I decided to develop it myself. The result: http://jquery.com/plugins/project/fxqueues (http:// www.decodeuri.com/jqueryfxqueues/) As the introduction explains: The jQuery Fx Queues plugin is a global queueing

[jQuery] Re: (this) question

2007-11-19 Thread milkshake
Thanks Mike, that works great. (this) is a thing of strange beauty ;) So if I follow right, (this) (or any variable assigned inside a function) is only available to that function? And why $(this) instead of (this)? Just wondering out loud... Thanks again. On Nov 19, 6:14 pm, Michael Geary

[jQuery] Re: Tab that links to another page

2007-11-19 Thread Owen Leonard
Thanks very much, that works beautifully. -- Owen

[jQuery] Accordion Header Image Replacement

2007-11-19 Thread yetanother
I have a simple accordion set up with the code below, but I want to be able to change the header's background image from an up arrow state to down arrow state and back automatically. Any ideas on where to go from here? $(document).ready(function() { $('div.acc div').hide();

[jQuery] WAI-ARIA support in jQuery?

2007-11-19 Thread Pete
Hi! Is anyone working on implementing the appropriate WAI-ARIA roles, states and properties [1] where relevant in jQuery? [1]: http://www.w3.org/TR/aria-roadmap/ Regards, Peter Krantz

[jQuery] New Plugin: jQuery Fx Queues

2007-11-19 Thread Luciano G. Panaro
(Sorry if I'm double posting) Hi, I created a new plugin that reimplements the queueing system, allowing the possibility of having global queues for jquery's animations (similar to what Scriptaculous has). http://jquery.com/plugins/project/fxqueues http://www.decodeuri.com/jqueryfxqueues/ New

[jQuery] Re: $(document).scroll() not functioning in IE?

2007-11-19 Thread Paul Irish
btw- found the solution. this should be $(window).scroll( fn ) window, not document. Paul Irish wrote: (scroll to the bottom to test) also safari seems to get halfway in.. so that's an improvement. On Oct 2, 12:52 pm, Paul Irish [EMAIL PROTECTED] wrote: I added some fun infinite scroll

[jQuery] Re: IE7 Tabs are invisible

2007-11-19 Thread Moonwalker
Hi Klaus, First thank you very much for your great work. I think I did just what you said. I mixed up a lot of things, that's why I get a lot of troubles. The problem I had was solved when I downloaded the Dark CSS style I found here: http://dev.jquery.com/view/trunk/themes/dark/dark.tabs.css

[jQuery] Ajax xhtml incompatability?

2007-11-19 Thread Sarah (skatc)
I'm trying to get a simple ajax load going, like the example on this page: http://docs.jquery.com/Ajax/load#urldatacallback. My source page is this xhtml file: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd html head meta

[jQuery] Re: Performing actions at specific times of day, or at random?

2007-11-19 Thread zarino
That's excellent Ariel! Thank you very much. I'll try it out asap. :-D Zarino On Nov 17, 7:26 pm, Flesler [EMAIL PROTECTED] wrote: I don't think there's a plugin like that, but you definitely don't need jQuery to get the hour of the day and check for a range. var hour = new

[jQuery] Image replacement

2007-11-19 Thread Wil Everts
I have an accordion-like setup for several divs to contract and expand when the header text is clicked on... On the line with the headers I have an arrow image which I would like to swap from up to down on show/hide. Can anyone provide some pointers? jquery: $(document).ready(function() {

[jQuery] Re: WAI-ARIA support in jQuery?

2007-11-19 Thread Benjamin Sterling
Peter, Although I have made my accessible to the aria standards completely yet, I have a working framework that does pass 508 compliance and works real well with JAWS over at http://airplume.informationexperts.com/. There are a few more things we need to implement to make the site better, things

[jQuery] Re: Image replacement

2007-11-19 Thread yetanother
Sorry for the double post, didn't see my original one when I returned from lunch, anyway, this message has more details. Thanks, Wil On Nov 19, 12:38 pm, Wil Everts [EMAIL PROTECTED] wrote: I have an accordion-like setup for several divs to contract and expand when the header text is clicked

[jQuery] Re: Superfish v1.3.1 - ie third level menu clipping display problem

2007-11-19 Thread Jared
Hi Joel, Well, I have found the source of the problem (which isn't superfish per se). If I un-include the jQuery plugin interface, the entire menu works as it should. Here's a link to the problem in action: http://web3.unt.edu/riskman/Test/testcases/superfishnav/UNT_RMS-EMP-application.html

[jQuery] Re: how to use :empty selector

2007-11-19 Thread Jörn Zaefferer
Brandon Aaron schrieb: You can use the filter method to select what you need. It would look something like this: $(document).ready(function() { $('input[type=text]').filter(function() { return !!$(this).val(); }); }); If you are using the validation plugin

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-19 Thread Flesler
I like it :) , the use of jQuery FX is, at least for me.. a bit esoteric. IMO, you should shorten the name of methods a bit, to make more jQuery- ish. For example: jQuery.fxQueues.clearQueue, I'd remove the 'Queue' part, as it is obvious what are you clearing. Very nice. Ariel Flesler On 19

[jQuery] Re: Autosuggest

2007-11-19 Thread Jörn Zaefferer
Gordon schrieb: For example, if an address is listed as Mister Foobar, 123 Fake street, Quuxville, AS1 23D, then the autocomplete plugin would suggest that address if the user typed in fake street as1, or fake foobar. Are there any autocumplete plugins that support doing this? I'll try to

[jQuery] Re: $.getJSON() problem

2007-11-19 Thread Jörn Zaefferer
Josh Nathanson schrieb: Usually this means that your JSON data has an error in the formatting somewhere - perhaps a missing or extra comma. If JSON data cannot be evaluated successfully, it fails silently. Actually it triggers the global ajaxError event. Though unless you register a

[jQuery] Re: Autosuggest

2007-11-19 Thread Gordon
Thanks for the suggestion, but it came too late. I've now already written something that seems to work pretty well. Will post source later for comments and in the hopes someone else will find it useful. On Nov 19, 6:49 pm, Sean O [EMAIL PROTECTED] wrote: Gordon, I think the quickSearch

[jQuery] Re: WAI-ARIA support in jQuery?

2007-11-19 Thread Klaus Hartl
On Nov 19, 9:21 pm, Pete [EMAIL PROTECTED] wrote: Hi! Is anyone working on implementing the appropriate WAI-ARIA roles, states and properties [1] where relevant in jQuery? [1]:http://www.w3.org/TR/aria-roadmap/ Not yet, but I'm planning to do so for UI Tabs. --Klaus

[jQuery] Re: updated Tablefilter Feedback please

2007-11-19 Thread James Dempster
Do you think this plugin needs a default UI? Or shall it remain event driven only requiring the end developer to implement there own UI? Does some one have any thoughts or comments on the subject?

[jQuery] Re: IE7 Tabs are invisible

2007-11-19 Thread Klaus Hartl
On Nov 19, 6:23 pm, Moonwalker [EMAIL PROTECTED] wrote: Ok I found the solution. It appears like I'm not using the last CSS theme. I downloaded the one here:http://dev.jquery.com/view/trunk/themes/dark/dark.tabs.css And it worked fine. Just one final question. Is it possible to use the

[jQuery] Re: IE7 Tabs are invisible

2007-11-19 Thread Klaus Hartl
On Nov 19, 9:37 pm, Moonwalker [EMAIL PROTECTED] wrote: Is there any place where I can download all the last packages? I don't mean just the JS files, but also the themes, CSS and UI. You can download the full package from here: http://ui.jquery.com/ Click Download jQuery UI. --Klaus

[jQuery] Re: Performing actions at specific times of day, or at random?

2007-11-19 Thread zarino
Ahh... one more question... Since I have index.html pages on two levels of my site (both 'www.domain.com/' and 'www.domain.com/stuff') the generated link element needs to contain one href for pages on the root level, and then a different href for pages one directory up. At the moment, the

  1   2   >