[jQuery] Re: new cookieJar plugin, feedback please

2007-08-13 Thread Klaus Hartl
Michael Geary wrote: From: Klaus Hartl Yeah! I like how it is build on top of my basic cookie plugin instead of rebuilding stuff... Another example how well the plugin architecture works out. ...except that there's no plugin architecture at work here. :-) These three plugins don't really

[jQuery] Kelvin Luck's jscrollpane scrollTo anchor (missing?) feature

2007-08-13 Thread Alexandre Plennevaux
hello! i have 3 anchor links (allowing to jump to a specific chapter in a text) and i was wondering if there is a simple way to make the page slide down instead of jump to the target anchor. i find kelvin's jscrollpane allows to do it. question: can it take an element as parameter or does it

[jQuery] Problem with ClueTip: Flash-Elements flickers when rollover

2007-08-13 Thread Muckinger
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

[jQuery] Re: Got Grid? Here's a large plugin effort.

2007-08-13 Thread Josh Bush
To add rows I added a jQuery method that you call like this: var t=$(#test); var rows=[]; for(var i=0;i500;i++) rows.push([Test,Row,i]); t.addRow(rows); //Multi-Row Append to end t.addRow([Test,Row,-1],1); //Single row insert at position 1 I'll make an effort to document each of the

[jQuery] Re: Problem with ClueTip: Flash-Elements flickers when rollover

2007-08-13 Thread Alexandre Plennevaux
Did you set your flash wmode parameter to transparent ? If not, try it, it may solve your issue. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Muckinger Sent: lundi 13 aoűt 2007 10:49 To: jquery-en@googlegroups.com Subject: [jQuery] Problem

[jQuery] Re: issues with accordeon and tooltiip z-index

2007-08-13 Thread Alexandre Plennevaux
I couldn't find the js code relevant to your tooltip implementation but this seems like a z-index issue to me. Make sure the tooltip gets the highest z-index value. Did you try using cluetip? It's a very smart tooltip plugin... -Original Message- From: jquery-en@googlegroups.com

[jQuery] Animating scrollLeft

2007-08-13 Thread interfaced
Is there a way to take this scrolling functionality and use it as a plugin? I can't seem to find out where the functions for scrolling the page are in this example: http://docs.jquery.com/JQuery_1.2_Roadmap#Animating_scrollLeft.2FscrollTop Any help would be much appreciated

[jQuery] Exec'ing JS In load()ed content for IE

2007-08-13 Thread starmonkey
I'm using jQuery's load() function in order to pull content from the server and stick it into a div. This content has both html + javascript inside it, and I need to get the javascript actually evaluated for IE6+7. Firefox handles javascript fine for both inline + externally referenced

[jQuery] Exec'ing JS In load()ed content for IE

2007-08-13 Thread starmonkey
I'm using jQuery's load() function in order to pull content from the server and stick it into a div. This content has both html + javascript inside it, and I need to get the javascript actually evaluated for IE6+7. Firefox handles javascript fine for both inline + externally referenced

[jQuery] jQuery and blogrolls

2007-08-13 Thread Kia Niskavaara
On my blog I have a very long and doll blogroll. It's an ordinary ul-list with about 100 links in li-tags. I'm looking for ideas of how to improve blogrolls to make them more accessible, and more fun to watch and use. Any ideas?

[jQuery] Performance Booster - $( expr, context, fn ) ?

2007-08-13 Thread willi
Hallo, When the search $() returns a lot of objects (1), then you have to loop twice through this objects. First for selecting the elements, and then second when doing somthing with the elements. e.g. $('td').addClass('red'); // get all tabledata and do something with them It would be nice

[jQuery] Re: SITE SUBMISSION: http://www.thor.be/creations.php

2007-08-13 Thread Alexandre Plennevaux
thank you! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ganeshji Marwaha Sent: samedi 11 août 2007 1:05 To: jquery-en@googlegroups.com Subject: [jQuery] Re: SITE SUBMISSION: http://www.thor.be/creations.php awesome. very cool and well done... -GTG On

[jQuery] issues with accordeon and tooltiip z-index

2007-08-13 Thread Armand Datema
Hi I have an accordeon like thingie made ont he following page http://itbuzz.howardshome.com/Home/tabid/54/Default.aspx I also have a tooltip there you can see it working on the first item, but on the second item, all the title bars go throgh the tooltip. Any idea whats causing this and any

[jQuery] Re: Dimensions 1.1 Released

2007-08-13 Thread Michael Schwarz [MVP]
Hi, I love this, as I did a very similar plugin. Well, the only thing I don't like is the error() in all methods. Maybe it should return 0 instead, and somewhere else the plugin could be configured to throw an exception or return 0. Michael On Aug 13, 6:34 am, Brandon Aaron [EMAIL

[jQuery] Exec'ing JS In load()ed content for IE

2007-08-13 Thread starmonkey
I'm using jQuery's load() function in order to pull content from the server and stick it into a div. This content has both html + javascript inside it, and I need to get the javascript actually evaluated for IE6+7. Firefox handles javascript fine for both inline + externally referenced

[jQuery] Re: Exec'ing JS In load()ed content for IE

2007-08-13 Thread Christof Donat
Hi, Posting things multiple times doesn't raise the probability to get a useful answer. Christof

[jQuery] Re: Problem with ClueTip: Flash-Elements flickers when rollover

2007-08-13 Thread Marcus Renz
Hallo Alexandre, iŽve tried this, but wmode=transparant has no effect on the flickering in Firefox. Any other tip? Alexandre Plennevaux schrieb am Montag, 13. August 2007, 13:11:18: AP Did you set your flash wmode parameter to transparent ? If not, try it, it AP may solve your issue. AP

[jQuery] Re: Dimensions 1.1 Released

2007-08-13 Thread Brandon Aaron
The error has been tricky issue. Most jQuery functions operate on zero or more elements in a jQuery collection. However, some methods only operate on the first matched element and return some value. If a script is depending on a value from the offset method, there will be an error somewhere. I'm

[jQuery] Question: Efficient Usage of jQuery

2007-08-13 Thread Hector Santos
I think I ran into something that probably might be **over* usag of jQuery. It may mean I need recognize a few things, but I naturally thought jQuery should be able to handle this. Ok I have been creating autonomous modules and each can load by themselves. Now, I've been loading a few of them

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread SeViR
WebolizeR escribió: On Aug 13, 2:55 pm, SeViR [EMAIL PROTECTED] wrote: if IE cannot handle object properties how can we configure that, is there another method to configure the plugin which I donot know? tHanks Simply check if you have a final comma in the list of values. CORRECT

[jQuery] Cycle Plugin update

2007-08-13 Thread Mike Alsup
I've just uploaded a new version of the Cycle Plugin: http://malsup.com/jquery/cycle/ This new version adds some new transition effects, the ability to create custom transitions, and the ability to transition on a click event rather than a timeout. But the biggest change is an overhaul to how

[jQuery] object orientated setTimeout

2007-08-13 Thread weepy
Hi have the following problem : I want to delay this call by 400ms : game.setAllowedMoves(this_game.allowed_moves) setTimeout(game.setAllowedMoves(this_game.allowed_moves)) does not work as it's executed in the global context. Any idea how to do this ?

[jQuery] Re: Problem with ClueTip: Flash-Elements flickers when rollover

2007-08-13 Thread Karl Swedberg
Hi Marcus, It might have to do with the default fx that clueTip uses -- fadeIn -- because of issues with opacity. Could you try modifying the fx.open and fx.openSpeed options? It would look something like this: $('whatever').cluetp({fx: {open: 'show', openSpeed: '' } }); Also,

[jQuery] Re: object orientated setTimeout

2007-08-13 Thread weepy
to answer my own question : window.setTimeout(function() { game.setAllowedMoves(this_game.allowed_moves)} , 400) On Aug 13, 1:56 pm, weepy [EMAIL PROTECTED] wrote: Hi have the following problem : I want to delay this call by 400ms : game.setAllowedMoves(this_game.allowed_moves)

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread Karl Swedberg
On Aug 13, 2007, at 8:40 AM, WebolizeR wrote: var myobject = {property: value,} // fail in IE if IE cannot handle object properties how can we configure that, is there another method to configure the plugin which I donot know? It *can* handle object properties. You just have to remove the

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread WebolizeR
final code is here and problem goes on Note: '); after the script is related to PHP code, it cannot cause the problem, it's my problem when I am selecting the text to copy and paster here :D script language=JavaScript !-- $().ready(function() { //

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread Dan G. Switzer, II
WebolizeR, I got it and changed the JS code like below, but it still fails in IE, it submits the form without any validation script language=JavaScript !-- $().ready(function() { // validate the form when it is submitted

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Mike Alsup
Hi Ben, Yeah, I love that shuffle transition - you da man! $.meta and data() come from the Metadata plugin: http://jqueryjs.googlecode.com/svn/trunk/plugins/metadata/lib/jQuery/metadata.js Mike On 8/13/07, Benjamin Sterling [EMAIL PROTECTED] wrote: MIke, Looks good, the shuffle transition

[jQuery] jQuery Multiple Upload Plugin v1.23

2007-08-13 Thread Diego A.
Just quick a message to anyone using the jQuery Multiple Upload Plugin. New version: http://www.fyneworks.com/jquery/multiple-file-upload/ - copies original element attributes for new elements This is more of a 'heads up', but as usual, feedback will be welcomed. Thanks, Diego A.

[jQuery] Re: Creating plugins

2007-08-13 Thread Dan G. Switzer, II
guess) it a pain. the javascript class code structure it also very akword to be coming from a C++ background. Amen, and i had the same hurdle to climb, but JavaScript isn't C++. It uses a completely different type of OOP. These articles may be helpful in understanding it: Implementing

[jQuery] Re: Dojo combobox equivalent

2007-08-13 Thread Eridius
I don't think there is anything exactly like that but it is basically a autocompleter with a slight modification. hfilter wrote: Hi everyone Does anyone know of a jquery equivalent to the autocomplete dojo combobox. A demo can be found here

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Benjamin Sterling
MIke, Looks good, the shuffle transition is great, where did you ever come up with that :D. But really, it look tight. I am assuming $.meta and data() are in the core, is there any documentation on them? I am curious about their purpose. On 8/13/07, Mike Alsup [EMAIL PROTECTED] wrote: I've

[jQuery] Re: new cookieJar plugin, feedback please

2007-08-13 Thread Dan G. Switzer, II
LetsSurf, I've just finished writing a cookieJar plugin for jQuery, as I couldn't find anything like it for jQuery. http://www.jdempster.com/category/code/jquery/cookiejar/ Thought I would post it here in the hope of some feedback. Please let me know what you think. Is this a good approach to

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread WebolizeR
I got it and changed the JS code like below, but it still fails in IE, it submits the form without any validation script language=JavaScript !-- $().ready(function() { // validate the form when it is submitted $(#formApp).validate({

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Tane Piper
Very nice - I like the fact you haven't limited to only some transition types, but allow for custom types too. I'll be having a look at this one more in-depth. On 8/13/07, Mike Alsup [EMAIL PROTECTED] wrote: I've just uploaded a new version of the Cycle Plugin:

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread WebolizeR
Final code is below but it still fails and submits the form without any validation, I hate IE, Firefox works fine... $(#formApp).validate({ rules: { order_name: required, order_email: { required: true, email:

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread Dan G. Switzer, II
WebolizeR, Final code is below but it still fails and submits the form without any validation, I hate IE, Firefox works fine... I suspect you have another problem that causing IE to fail before it gets to the validation. Can you provide a URL example? -Dan

[jQuery] Re: Why jQuery over Mootools

2007-08-13 Thread Eridius
Well this is true and not true. Mootools is based on Moo.fx which might have been around much longer than jQuery but Mootools i believe was released a few months after jQuery. Mootools is largely based off or Moo.fx(and prototype/jQuery) Andy Matthews-4 wrote: Actually, I believe that

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Joel Birch
Awesome, thanks for this Mike. Now that there is no danger of people wanting my effort (yours looks far better), here is my test page for you to look at, just for your amusement. I did my plugin maybe 4 months ago but never made it public as I was intimidated by the amount of documentation I

[jQuery] Re: Why jQuery over Mootools

2007-08-13 Thread Andy Matthews
Actually, I believe that Moo Tools has been around for quite a bit longer than jQuery. It was one of the first effects libraries I looked at before I ever even heard of jQuery. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eridius Sent:

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread WebolizeR
you can check the example from here : http://nexus.di-tasarim.com/index.php?option=com_nexusact=gallerytask=orderid=32 tHanks again On Aug 13, 4:38 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: WebolizeR, Final code is below but it still fails and submits the form without any validation,

[jQuery] Re: Why jQuery over Mootools

2007-08-13 Thread Andy Matthews
Ah...I gotcha. You're probably right, I was most likely mixing up my libraries. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eridius Sent: Monday, August 13, 2007 8:42 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Why jQuery over

[jQuery] Re: new cookieJar plugin, feedback please

2007-08-13 Thread James Dempster
Very true, 4KB is a large amount of data to send on each request. Until something like FF storage stuff is more widely implemented then I think devs have little options. I was thinking of putting some kind of calculation on how much space is being used, and some way to inform the developer on

[jQuery] Re: jQuery Multiple Upload Plugin v1.23

2007-08-13 Thread Benjamin Sterling
Diego, That is looking really nice. Great job. On 8/13/07, Diego A. [EMAIL PROTECTED] wrote: Just quick a message to anyone using the jQuery Multiple Upload Plugin. New version: http://www.fyneworks.com/jquery/multiple-file-upload/ - copies original element attributes for new elements

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Mike Alsup
Hey Joel, thanks for the link. Ha, that's funny, we even chose many of the same property names! Great minds... One thing I noticed right away is how much better jQuery 1.1.3 handles animations. It's so much smoother than 1.1.2. I hear you on the documentation. It took me much longer to

[jQuery] Re: jQuery Multiple Upload Plugin v1.23

2007-08-13 Thread Mike Alsup
Thanks, Diego. I'm a big fan of this plugin. Mike Just quick a message to anyone using the jQuery Multiple Upload Plugin. New version: http://www.fyneworks.com/jquery/multiple-file-upload/ - copies original element attributes for new elements

[jQuery] Re: Problem with ClueTip: Flash-Elements flickers when rollover

2007-08-13 Thread Muckinger
Hi Karl, thanks for your suggestions. i use Version 0.8.1 (08/07/2007) - changing fx from fadein to show did not work - append to body seems to be the problem. if i make a wrapper-div, that does NOT wrap the flash-element, it seems to work. maybe you can put this wrapper into the options

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Alexandre Plennevaux
simply amazing ! beautiful code, beautiful result ! Crafty ! Mike, bravo! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: lundi 13 août 2007 13:56 To: jQuery Discussion Subject: [jQuery] Cycle Plugin update I've just

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread WebolizeR
Anything you can find false, site is Joomla based and component is developed by me... On Aug 13, 4:48 pm, WebolizeR [EMAIL PROTECTED] wrote: you can check the example from here : http://nexus.di-tasarim.com/index.php?option=com_nexusact=galleryta... tHanks again On Aug 13, 4:38 pm, Dan

[jQuery] Re: Problem with ClueTip: Flash-Elements flickers when rollover

2007-08-13 Thread Muckinger
i make 2 test-page: no flicker with wrapper-div: http://www.media-giganten.de/test/cluetip-test/index.html flicker without div and changed fx: http://www.media-giganten.de/test/cluetip-test/index_flick.html Muckinger wrote: Hi Karl, thanks for your suggestions. i use Version 0.8.1

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Txt.Vaska
only made a cursory glance at this... is it possible to stop the transitions with a click (a link elsewhere on the page)? i see pause on hover. i'd like to be able to do additional transitions upon external clicks as well (in a way almost like next prev links controlled by click instead

[jQuery] Re: Got Grid? Here's a large plugin effort.

2007-08-13 Thread Glen Lipka
We had a test a while back that was changing a CSS class versus a series of dom elements. http://www.sunsean.com/animatetest.html I was thinking about your column resizing. Maybe this technique would improve the speed of the column resize? Maybe even show the whole column sizing dynamically. I

[jQuery] Re: Animating scrollLeft

2007-08-13 Thread Glen Lipka
Try this demo. http://dev.jquery.com/~john/ticket/step/test2.html You can include the easing plugin to get different kinds of effects. http://gsgd.co.uk/sandbox/jquery.easing.php Glen On 8/12/07, interfaced [EMAIL PROTECTED] wrote: Is there a way to take this scrolling functionality and use

[jQuery] Re: jQuery and blogrolls

2007-08-13 Thread Glen Lipka
Ideas: 1. a tree with folders http://bassistance.de/jquery-plugins/jquery-plugin-treeview/, 2. a scrollable area http://www.learningjquery.com/2006/10/scroll-up-headline-reader (broken, but the fix is mentioned in the article) 3. Google Suggest - http://jquery.bassistance.de/autocomplete/ I think

[jQuery] Re: scollovers animation

2007-08-13 Thread Glen Lipka
I sort of find it distracting. Imagine a page of 50 links all spread out in the text (like wikipedia). Moving the mouse around with cause all this animation. Maybe use the hoverIntent() plugin? It would solve this issue I think. Glen On 8/13/07, Txt.Vaska [EMAIL PROTECTED] wrote: wish i

[jQuery] Re: Got Grid? Here's a large plugin effort.

2007-08-13 Thread Josh Bush
Thanks for the feedback. I'm just trying to get a feel for what the community thinks of this ambitious project. My goals are simple initially: - I want a table based widget that didn't butcher the table markup by breaking off the header/footer as I've seen other css based solutions do. - I want

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-13 Thread Jay W
Matt, I tried to use 1. $(div/div).appendTo($(window.document.blahblah)); and 2. $(div/div).appendTo($('#divId', window.document)); and 3. var added = window.document.getElementById('divId'); S('divHAHAHAHAHAH test/div').appendTo(added); The 2nd and 3rd method still works in

[jQuery] Re: Got Grid? Here's a large plugin effort.

2007-08-13 Thread Andy Matthews
Hmmm...I know it's not right but I actually like the DOM method. It looks sort of cool that they don't all go at the same time. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Monday, August 13, 2007 9:38 AM To: jquery-en@googlegroups.com

[jQuery] Re: Question: Efficient Usage of jQuery

2007-08-13 Thread Sean Catchpole
Loading different pages with .ready's is just fine. If the page has already loaded then all .ready functions will be executed immediately. Also, there is probably not a scoping issue. You might want to make sure that the html you are trying to change (a tags) have all been loaded at the point your

[jQuery] Re: Why jQuery over Mootools

2007-08-13 Thread Eridius
You know it is always the simple thing that you never think of. Klaus Hartl wrote: Eridius wrote: Well after using jQuery and then going back to Mootools i do find i like a few thing about jQuery better. One thing i think jQuery does better is going through the DOM and selecting

[jQuery] Re: Why jQuery over Mootools

2007-08-13 Thread Eridius
Well after using jQuery and then going back to Mootools i do find i like a few thing about jQuery better. One thing i think jQuery does better is going through the DOM and selecting whatever i want fast and easy. I also like the .css() function because in mootools i would have to create a

[jQuery] Re: Why jQuery over Mootools

2007-08-13 Thread Klaus Hartl
Eridius wrote: Well after using jQuery and then going back to Mootools i do find i like a few thing about jQuery better. One thing i think jQuery does better is going through the DOM and selecting whatever i want fast and easy. I also like the .css() function because in mootools i would have

[jQuery] Re: Question: Efficient Usage of jQuery

2007-08-13 Thread Hector Santos
On Aug 13, 10:56 am, Sean Catchpole [EMAIL PROTECTED] wrote: Loading different pages with .ready's is just fine. If the page has already loaded then all .ready functions will be executed immediately. Also, there is probably not a scoping issue. You might want to make sure that the html you

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Mike Alsup
You can stop a slideshow anytime by passing 'stop' to the cycle method. With that in mind you can bind whatever event you need to whatever element you want. There is currently no support for driving a progression of slides via external links. That is something I will be looking into, but not

[jQuery] Re: new cookieJar plugin, feedback please

2007-08-13 Thread Dan G. Switzer, II
James, Very true, 4KB is a large amount of data to send on each request. Until something like FF storage stuff is more widely implemented then I think devs have little options. I was thinking of putting some kind of calculation on how much space is being used, and some way to inform the

[jQuery] Re: Why Choose jQuery Over Mootools

2007-08-13 Thread Jacky
I'm not familiar with mootools so I'm not going to compare them. But the code you shown is not using any jQuery function, they're a just plain js object. Moreover, the code is not working. It can be rewritten it as: function ajax_request(options) { this.ajax_options = { test: 'test'

[jQuery] Re: Problem with ClueTip: Flash-Elements flickers when rollover

2007-08-13 Thread Karl Swedberg
Hi Mucky, I appreciate your putting these test pages together for me. It really helps me troubleshoot. maybe you can put this wrapper into the options for such problmes with FF and Flash. If the suggestion is to add an option that allows the user to customize where in the page the

[jQuery] Re: Problem with animation on mouseover/mouseout!

2007-08-13 Thread Nazgulled
I used the stop() method just before the animate() one and it works (in both events) , sort of, like I want... Let's say the animations are 5000ms, both mouse over and mouse out. I move the mouse over and let the animation go for 2500ms and then move the mouse out. The mouse over animation will

[jQuery] Help modify this function

2007-08-13 Thread [EMAIL PROTECTED]
The following function shows/hides a field's label when its focused. Adding the class 'odd' gives the label visibility which is otherwise hidden. $(function() { $(ul.form).find(input,select,textarea,option) .focus(function(){$(this).parents('li').addClass('odd')})

[jQuery] Re: scollovers animation

2007-08-13 Thread George
is it even possible to animate a background image? Yep, you can change the css background-position to give you that effect if you really want it! George

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-13 Thread Jeffrey Kretz
The basic problem here is that IE has security restrictions about moving elements between frames. You can't create an element in one frame and add it to another. For example, this code will always fail in IE: var doc = $('#testframe')[0].contentWindow.document;

[jQuery] jQuery-fy Ellipsis code

2007-08-13 Thread Tane Piper
Hey folks, I took up the challenge of Steffen Rusitschka to convert his Ellipsis code from Prototype to jQuery. Unfortunately I decided to do this at the end of my work day as a little aside, and haven't managed to crack it yet - so I'm posting what I have so far to see if anyone can fix it -

[jQuery] Re: jQuery-fy Ellipsis code

2007-08-13 Thread Brandon Aaron
Just a side not ... if all you are using is the width and height methods and you are only calling it on DOM elements, you don't need to include dimensions. Dimensions adds the ability to call it on window and document but that is all. -- Brandon Aaron On 8/13/07, Tane Piper [EMAIL PROTECTED]

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread Bernd Matzner
Hi, I have just had a similar problem - this actually happens only with IE6, IE7 is fine. I was able to work around it by removing the umlauts ÄÖÜ from the Validate plugin regex. I'm suspecting this happens when the page is UTF8-encoded, which is the case with your page and the page where I

[jQuery] Re: Problem keeping swap image from mouseout

2007-08-13 Thread Frank
Hi Benjamin, Thank you for your reply. I need to keep image2 when clicked. In this way, the user knows what navigation link they are on. Then if the user clicks on another link, the previous link returns to image1. I have done the following: //preloaded the images fastImage = new Image;

[jQuery] Re: scollovers animation

2007-08-13 Thread Blair Mitchelmore
btw: the example doesn't work in Safari 2.0.3 I don't have a mac to test that sort of stuff. (Though to be fair I could've tested Safari 3 in windows...) Anyways, this is not a production plugin. I wrote it haphazardly and didn't test it *anywhere.* I wrote it so that it worked and looked

[jQuery] Checking for popup blocker when using click()

2007-08-13 Thread Geoff
Hi! I'm callling the $(this).click() when this is a input submit element. This should open a popup because the form has its target attribute set to another window, but if there is a popup blocker (for example firefox's) nothing will happen. I'd like to detect this. When you use window.open, you

[jQuery] SITE SUBMISSION: http://www.partyark.co.uk

2007-08-13 Thread Alistair Potts
Hello, my site Party Ark for children's party supplies is up and running with jquery. We use a modified Thickbox on the product pages, and jquery ajax for adding to basket. Plus other bits and pieces which have just been much quicker to write with jquery. http://www.partyark.co.uk Cheers, AJP

[jQuery] Re: Checking for popup blocker when using click()

2007-08-13 Thread Tane Piper
Hi Geoff, I think the point of popup blockers is that they should be non-detectable, otherwise every spam site would just disable it and it would be useless. Instead of a popup, why not use something like a modal element, which allows you to have popup/alert like functionality by appending a

[jQuery] Re: Exec'ing JS In load()ed content for IE

2007-08-13 Thread huub fleuren
Hi if you get the response text and put it somewhere in a page in a the onComplete function, the next line might call a function in there that calls the rest. It won't execute automatically. also you can put the response in a document.createElement(IFRAME).src, than it actually will execute.

[jQuery] Re: wildcards and onclick

2007-08-13 Thread seedy
that works great thanks!! $('input:[EMAIL PROTECTED]').filter(function() { return $(this).attr('onclick').indexOf('confirm') = 0; }); I added the [EMAIL PROTECTED] to the selector to prevent the indexOf from failing in the case that there is no onclick attribute. Klaus Hartl wrote:

[jQuery] Equivalent to the dojo combobox

2007-08-13 Thread HFilter
Hi everyone Does anyone know of a jquery equivalent to the dojo autocomplete combo box? Demo: http://www.sauter-online.de/dojo/demos/widget/comboBox.html Thanks Heinrich

[jQuery] Re: Dojo combobox equivalent

2007-08-13 Thread duma
Yeah, it looks like it's an autocompleter with the added functionality that, when you click on the drop-down image/button, it shows you the complete list of possible values. Sean Eridius wrote: I don't think there is anything exactly like that but it is basically a autocompleter with a

[jQuery] confusing appendTo() behaviour

2007-08-13 Thread howardk
Hi, I'm just learning jquery and (mostly!) enjoying it. I'm a bit frustrated at the moment tho not understanding why multiple appendTo()'s don't seem to work, depending on what I'm trying to append. Here's a bit of exploratory code, called from a $.ajax() method, that seems to be misbehaving:

[jQuery] Re: scollovers animation

2007-08-13 Thread Blair Mitchelmore
I have no idea why a fieldset is being used but I do know that it let me define both a width as well as display:inline so that's probably the reason the script uses it. It's not really standards friendly, but javascript generated html rarely is. -blair On Aug 11, 5:28 am, Klaus Hartl [EMAIL

[jQuery] Re: Ajax call within ajax called page: IE error?

2007-08-13 Thread Pete
I'm making a reply to my own post because I figured it out (several other posts are running into the same thing). Hopefully if someone runs across this it will save a headache. In my example, it worked in FireFox but not in I: $(this).find('a.version').click(function(){

[jQuery] jQuery 1.0.2 conflicts with 1.1.2 ??

2007-08-13 Thread [EMAIL PROTECTED]
hi i started using jquery originally with thickbox... all was fine i recently started using the calendar code which i had to use 1.1.2 with now if i use the thickbox on my page, it pops open, then i close it and the calendar doesnt open at all, without any errors we tried using either

[jQuery] Re: object orientated setTimeout

2007-08-13 Thread duma
That's a good solution! Thanks for sharing it with all of us! Keep creating! Sean weepy wrote: to answer my own question : window.setTimeout(function() { game.setAllowedMoves(this_game.allowed_moves)} , 400) On Aug 13, 1:56 pm, weepy [EMAIL PROTECTED] wrote: Hi have the

[jQuery] Append-tag problems in IE7

2007-08-13 Thread julio
Hi, I have a document in Iframe retrieved correctly. I would like add a tag in head-tag. I have tried with: var head = frameDocument.documentElement.firstChild; $(head).append(link rel='stylesheet' type='text/css' href='selector.css' /); and: var head =

[jQuery] Re: new cookieJar plugin, feedback please

2007-08-13 Thread duma
I think this is great! So, it even supports storing arrays and hashes (objects) and whatnot? That's cool. Good work! LetsSurf wrote: I've just finished writing a cookieJar plugin for jQuery, as I couldn't find anything like it for jQuery.

[jQuery] Re: Exec'ing JS In load()ed content for IE

2007-08-13 Thread seedy
have you looked into using http://docs.jquery.com/Ajax#.24.getScript.28_url.2C_callback_.29 .getScript() rather than .load ? starmonkey-2 wrote: I'm using jQuery's load() function in order to pull content from the server and stick it into a div. This content has both html +

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Mike Alsup
HI Nicolas, I haven't tried to duplicate the KenBurnsEffect, but you can set up your own custom transitions. What exactly do you mean by dynamic? Mike On 8/13/07, Nicolas Hoizey [EMAIL PROTECTED] wrote: I've just uploaded a new version of the Cycle Plugin: http://malsup.com/jquery/cycle/

[jQuery] Making An Intergrated Plugin

2007-08-13 Thread Eridius
I am trying to learn the working of making a intergrated plugin(with using jQuery.fn.plugin method). I thought a good start would be a simple hover_menu. Now my understanding it that the this object points to the object it is called on so if i did $('div[id=hover_menu]').hover_menu() that

[jQuery] Re: scollovers animation

2007-08-13 Thread Klaus Hartl
Blair Mitchelmore wrote: I have no idea why a fieldset is being used but I do know that it let me define both a width as well as display:inline so that's probably the reason the script uses it. There is a CSS property that perfectly fits what is required here: display: inline-block; It's

[jQuery] Re: Modify head-tag's content in iframe document with IE

2007-08-13 Thread Michael Geary
You are getting the head tag correctly (heads is an array with one element), but the code probably ends up trying to set the innerHTML of a DIV in the current document (not the iframe) in order to convert the link HTML to DOM elements. If that conversion works, the LINK element belongs to the

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread Eridius
everything you said there makes sense but the plugin code, i thought i made the plugin like this: jQuery.fn.hover_menu = function(offset, speed) { var self = this; ${self).children('li').each(fucntion() { //grab current margin var current_margin =

[jQuery] Re: Help modify this function

2007-08-13 Thread george.gsgd
1) Yes, but not without changing how you do things, you're hiding stuff with css, so you'll have to change that, and write an initialise function that hides the labes. The instead of addClass, just do a .show('slow'); 2) Try moving the blur functionality to the focus function, so when you click

[jQuery] Re: jQuery 1.0.2 conflicts with 1.1.2 ??

2007-08-13 Thread george.gsgd
Updating your thickbox would sound like the best answer: http://jquery.com/demo/thickbox/ It generally works that 1.0.whatever maintains backwards compatability from 1.0, but if you move to 1.1.whatever, that only maintains backwards compatability from 1.1 You dig? [EMAIL PROTECTED] wrote:

[jQuery] IE6 Out of Memory Error on click away

2007-08-13 Thread Josh Nathanson
Hey all, I'm working on a script and I'm getting a weird error in IE6. The script runs fine, however, when I click any link to navigate away from the page that contains the script, I get an alert Out of memory on line: 1 before the new page loads. I'm using Jorn's accordion plugin and the

[jQuery] Re: Click or Find not working in IE7 but working in FF? whats wrong with this code?

2007-08-13 Thread George
jQuery provides an excellent onReady event in which you can put all your code knowing that it will run asap, usually before the images load etc. I suspect your code it running before the elements are there. try this... (I've used the shorthand for $.ready(...) script type=text/javascript

  1   2   >