[jQuery] Re: Tabs - missing close button

2007-08-13 Thread Klaus Hartl
Mitchell Waite wrote: I love your tabs plugin and I am really using it in a beautiful way. I was wondering – today’s tabs in Firefox and IE7 come with close buttons in the upper right corner. Would it be possible to modify the css and graphics so that we could use close buttons? I would like t

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

2007-08-13 Thread SeViR
Geoff escribió: My aim is not to disable the pop up blocker, just to check if it is present and show an error or notification to the user. Its not a pop up, its opening an external website in a new window / tab. Thanks! Popup blockers treats any window.open as popup in some cases: If the p

[jQuery] Re: using load cross site

2007-08-13 Thread Hector Santos
But Michael, please excuse my ignorance. I'm curious. I have to ask because I still do not see this "JSONP XSS loophole." Isn't this flickr example you showed below is selft containing with the same site I/O? Where is the cross-site logic? Do you have a link to some official or 'proposal' or dra

[jQuery] Re: What is wrong with this code?

2007-08-13 Thread Ganeshji Marwaha
No problem karl I like being "quoted" ;-) But, the jkwick doesn't actually use the technique he needs. Instead it uses a boolean called "running" to determine if an animation is running or not and if it is running, then it doesn't trigger another animation until that has finished. Actually it

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

2007-08-13 Thread Sean Catchpole
You bring up an interesting point Willi. You stated that $() runs 2 times, which is correct, except that the first time there is significantly more work being done. The first time it has to search through the DOM collecting all the DOM elements and matching them against the selector. This is a lot

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Joel Birch
On 8/14/07, Mike Alsup <[EMAIL PROTECTED]> wrote: > > To Joel's point, I made a template for my docs a while back. If > anyone is interested in getting a copy of it then I'll clean it up, > zip it up, and post it. > > Mike Definitely! No rush at the moment but it would be awesome if you could d

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Mike Alsup
Thanks everyone for the feedback and comments. I've received some good suggestions for enhancements and I'm expecting to post another update later in the week. To Joel's point, I made a template for my docs a while back. If anyone is interested in getting a copy of it then I'll clean it up, zip

[jQuery] Tabs - missing close button

2007-08-13 Thread Mitchell Waite
Klaus I love your tabs plugin and I am really using it in a beautiful way. I was wondering - today's tabs in Firefox and IE7 come with close buttons in the upper right corner. Would it be possible to modify the css and graphics so that we could use close buttons? I would like to be able to add

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Joel Birch
On 8/14/07, Rick Faircloth <[EMAIL PROTECTED]> wrote: > > > One of the aspects of your plug-in offering to the community, > Mike, is the good documentation and, especially, demos for beginner, > intermediate, and advanced users. > > That approach to documentation, usage, and demos will help bring >

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Rick Faircloth
One of the aspects of your plug-in offering to the community, Mike, is the good documentation and, especially, demos for beginner, intermediate, and advanced users. That approach to documentation, usage, and demos will help bring many new people into the jQuery fold. Plug-in developers take note

[jQuery] Re: Looping through data object

2007-08-13 Thread Aaron Heimlich
On 8/13/07, bleen <[EMAIL PROTECTED]> wrote: > foreach( options as option){ > do stuff > } > > If this were PHP, I'd agree with you. But the JavaScript syntax is: for(var option in options) { // option is a key in options // options[option] is a value in options } -- Aaron Heimlich We

[jQuery] Re: Looping through data object

2007-08-13 Thread bleen
foreach( options as option){ do stuff }

[jQuery] Re: Dimensions 1.1 Released

2007-08-13 Thread Diego A.
Great work Brandon. I'm so glad I can rely on your dimensions plugin to do some of my dirty work... lol Thanks! Diego A. On Aug 13, 5:34 am, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > I just released Dimensions 1.1. It includes an option to include margin for > the outerWidth and outerHeight m

[jQuery] Re: What is wrong with this code?

2007-08-13 Thread Eridius
That is pretty disappointing, that is a lot of code to stop an animation. i guess i need to rethink on mootools. Karl Swedberg-2 wrote: > > > > On Aug 13, 2007, at 8:40 PM, Joel Birch wrote: > >> On 8/14/07, Joel Birch <[EMAIL PROTECTED]> wrote: >> On 8/14/07, Eridius <[EMAIL PROTECTED]> w

[jQuery] Re: What is wrong with this code?

2007-08-13 Thread Karl Swedberg
On Aug 13, 2007, at 8:40 PM, Joel Birch wrote: On 8/14/07, Joel Birch <[EMAIL PROTECTED]> wrote: On 8/14/07, Eridius <[EMAIL PROTECTED]> wrote: That help quite a bit but still not the effect i am looking for. I know this is ironic but i am looking for the effect on this home page on the

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

2007-08-13 Thread Rick Faircloth
Very nice, Diego! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Diego A. Sent: Monday, August 13, 2007 9:18 AM To: jQuery (English) Subject: [jQuery] jQuery Multiple Upload Plugin v1.23 Just quick a message to anyone using the jQuery Mu

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

2007-08-13 Thread Joel Birch
On 8/13/07, willi <[EMAIL PROTECTED]> wrote: > > > 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'); // g

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Rick Faircloth
Great job, Mike... I'm sure this will be a very useful and often used plugin! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Monday, August 13, 2007 8:56 AM To: jQuery Discussion Subject: [jQuery] Cycle Plugin update I

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Karl Swedberg
Unbelievable! That is an amazing plugin, Mike. Spectacular flexibility. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 13, 2007, at 9:06 AM, Benjamin Sterling wrote: MIke, Looks good, the shuffle transition is great, where did you ever come up wi

[jQuery] Re: What is wrong with this code?

2007-08-13 Thread Joel Birch
On 8/14/07, Joel Birch <[EMAIL PROTECTED]> wrote: > > On 8/14/07, Eridius <[EMAIL PROTECTED]> wrote: > > > > > > That help quite a bit but still not the effect i am looking for. I know > > this > > is ironic but i am looking for the effect on this home page on the right > > hand side: > > > > http

[jQuery] Re: What is wrong with this code?

2007-08-13 Thread Joel Birch
On 8/14/07, Eridius <[EMAIL PROTECTED]> wrote: > > > That help quite a bit but still not the effect i am looking for. I know > this > is ironic but i am looking for the effect on this home page on the right > hand side: > > http://mootools.net/ > > The thing that that effect has and this one does

[jQuery] Re: What is wrong with this code?

2007-08-13 Thread Eridius
That help quite a bit but still not the effect i am looking for. I know this is ironic but i am looking for the effect on this home page on the right hand side: http://mootools.net/ The thing that that effect has and this one does not is the is stops the effect once the mouse leaves if i move

[jQuery] Re: Dimensions 1.1 Released

2007-08-13 Thread Ganeshji Marwaha
awesome, good call on including the margin as part of the outerwidth. thanks -GTG On 8/12/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > > I just released Dimensions 1.1. It includes an option to include margin > for the outerWidth and outerHeight methods. I've also fixed the issues with > Safari

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread Joel Birch
On 8/14/07, Karl Swedberg <[EMAIL PROTECTED]> wrote: > > > On Aug 13, 2007, at 7:35 PM, Joel Birch wrote: > > Also, to get all the li elements within the initial object, I used find() > instead of children(). I'm a bit foggy on what the difference is at the > moment, but find works me. > > The diff

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread Karl Swedberg
On Aug 13, 2007, at 7:35 PM, Joel Birch wrote: Personally, I'd use: jQuery.fn.hover_menu = function(offset, speed){ this.find('').each(function(){ // 'this' is already a jQuery object (the one you attach the plugin to) var current_margin = $(this).css('marginLeft'); // 'this' ne

[jQuery] Re: What is wrong with this code?

2007-08-13 Thread Joel Birch
On 8/14/07, Joel Birch <[EMAIL PROTECTED]> wrote: > > > > On 8/14/07, Eridius <[EMAIL PROTECTED]> wrote: > > > > > > is there anything wring with that code(i don't care about use > > mouseover() > > instead of bind() because i did to test things)? > > > > > It seems to work fine for me, although I

[jQuery] Re: What is wrong with this code?

2007-08-13 Thread Joel Birch
On 8/14/07, Eridius <[EMAIL PROTECTED]> wrote: > > > is there anything wring with that code(i don't care about use mouseover() > instead of bind() because i did to test things)? > > It seems to work fine for me, although I would use hover() in order to eliminate the buggy behaviour of mouseout firi

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread Joel Birch
On 8/14/07, Joel Birch <[EMAIL PROTECTED]> wrote: > > jQuery.fn.hover_menu = function(offset, speed){ >this.find('').each(function(){ // 'this' is already a jQuery object > (the one you attach the plugin to) >var current_margin = $(this).css('marginLeft'); // 'this' needs to > be wrap

[jQuery] What is wrong with this code?

2007-08-13 Thread Eridius
Ok this should be pretty simple so hopefully it will be simple to fix. I am create a hover menu that make the li element under a certain id shoot out 15px whenever mouse it over them and back when it leaves. here is a link: http://apex-wowguild.com/dev/ If you try each one out by mousing over

[jQuery] Re: using load cross site

2007-08-13 Thread Michael Geary
No, you can load *scripts* cross-site with no problem. It's true, a server-side proxy is the only way to do a cross-site Ajax download. But if the information is available in any kind of executable JavaScript format, you can use a script tag or a dynamic script element to download it. That's wh

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread Joel Birch
Personally, I'd use: jQuery.fn.hover_menu = function(offset, speed){ this.find('').each(function(){ // 'this' is already a jQuery object (the one you attach the plugin to) var current_margin = $(this).css('marginLeft'); // 'this' needs to be wrapped in a new jQuery object }); Note w

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread WebolizeR
yes, at soon,it worked I used the uncompressed jquery.validate plugin, that fixed the problem tHanks to all who help me... On 13 Ağustos, 22:52, SeViR <[EMAIL PROTECTED]> wrote: > WebolizeR escribió:> you can check the example from here : > > >http://nexus.di-tasarim.com/index.php?option=com_ne

[jQuery] Re: using load cross site

2007-08-13 Thread Anthony Leboeuf(Worcester Wide Web)
Thanks man got it Matt Stith wrote: The only way around is to use a server-side script as a proxy, as loading scripts cross-site is a security risk, which is why browsers block that out. On 8/13/07, * Anthony Leboeuf(Worcester Wide Web)* <[EMAIL PROTECTED] > wrote:

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

2007-08-13 Thread Stephan Beal
On Aug 13, 11:05 pm, Geoff <[EMAIL PROTECTED]> wrote: > My aim is not to disable the pop up blocker, just to check if it is > present and show an error or notification to the user. Its not a pop > up, its opening an external website in a new window / tab. There is no generic way of checking wheth

[jQuery] Re: IE6 Out of Memory Error on click away

2007-08-13 Thread JoshN
I figured out what was causing this. In using Jorn's accordion, I was leaving the 'event' option as an empty string, as I do not want to trigger the accordion except externally to the accordion, using the 'activate' method. Apparently, not specifying an event for the accordion causes a memory le

[jQuery] Re: using load cross site

2007-08-13 Thread Matt Stith
The only way around is to use a server-side script as a proxy, as loading scripts cross-site is a security risk, which is why browsers block that out. On 8/13/07, Anthony Leboeuf(Worcester Wide Web) < [EMAIL PROTECTED]> wrote: > > > Hello, > > I am working on a website for the BBB and need to load

[jQuery] using load cross site

2007-08-13 Thread Anthony Leboeuf(Worcester Wide Web)
Hello, I am working on a website for the BBB and need to load a document cross site, I am getting a permission denied message when doing so. Is there a way around that? Thanks

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread Eridius
Ok. I think i will use that way because too me it looks a lot cleaner. bmsterling wrote: > > Eridius, > Your plugin code will work, but the preferred method is the method that > Bernd wrote. > > On 8/13/07, Eridius <[EMAIL PROTECTED]> wrote: >> >> >> >> everything you said there makes sense

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread Benjamin Sterling
Eridius, Your plugin code will work, but the preferred method is the method that Bernd wrote. On 8/13/07, Eridius <[EMAIL PROTECTED]> wrote: > > > > everything you said there makes sense but the plugin code, i thought i > made > the plugin like this: > > jQuery.fn.hover_menu = function(offset, spe

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

2007-08-13 Thread Geoff
My aim is not to disable the pop up blocker, just to check if it is present and show an error or notification to the user. Its not a pop up, its opening an external website in a new window / tab. Thanks! On Aug 13, 7:44 pm, "Tane Piper" <[EMAIL PROTECTED]> wrote: > Hi Geoff, > > I think the poin

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread seedy
I think what you are looking for is .children() $('div[id=hover_menu]').hover_menu( $(this).children('li') ) Eridius wrote: > > 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 m

[jQuery] $.post() and CI inquiry

2007-08-13 Thread Steve Finkelstein
Hi all, I have a simple javascript file being loaded externally that has the following code: -- snip -- $(document).ready(function() { $('#pendingUsers').load('index.php/meduser/check_pending_users',false, function() { $('#pendingUsers a').click(function() { $.post('index.php/meduser/pull_user_

[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(...) $(function(){ .. your

[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 th

[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: > h

[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 ou

[jQuery] Re: jQuery Validation Fails in IE

2007-08-13 Thread SeViR
WebolizeR escribió: you can check the example from here : http://nexus.di-tasarim.com/index.php?option=com_nexus&act=gallery&task=order&id=32 tHanks again On Aug 13, 4:38 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: Debugging your page with Web Developer Helper Toolbar I can

[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('').each(fucntion() { //grab current margin var current_margin = this.css('marginLeft')

[jQuery] Re: Making An Intergrated Plugin

2007-08-13 Thread Bernd Matzner
Hi Eridius, yes, "this" refers to the object passed to the plugin, in your case $('#hover_menu').hover_menu(); which would be shorter than $('div[id=hover_menu]').hover_menu() (function($) { $.fn.hover_menu = function(){ $(this).children('ul').children('li').hide(); }; })( jQu

[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 HTML to DOM elements. If that conversion works, the LINK element belongs to the wrong do

[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] 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 ins

[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/jquer

[jQuery] Event complications (beginner level)

2007-08-13 Thread Steve Finkelstein
Hi All, I'm having issues with simple event triggering. Here is an excerpt of my code: $(document).ready(function() { $('.pendingUsers').load('index.php/meduser/check_pending_users'); setInterval(function() { $('.pendingUsers').load('index.php/meduser/check_pending_users');

[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: 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. > > http://www.jdempster.com/category/code

[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(""); and: var head = frameDocument.getElementsByTagName("head")[0]; but it doesn't work. Have you any idea? I don't

[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

[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 jq

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

2007-08-13 Thread julio
Hi, I get a document in iframe with IE with this: frame = $doc.frames['myframe']; frameDocument = frame.document; and it works correctly. but how can I get head tag to modify its content? this doesn't work: var heads = frameDocument.getElementsByTagName("head"); $(heads).append(""); Thanks, J

[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(){ $('#C

[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 PR

[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: fun

[jQuery] Re: Cycle Plugin update

2007-08-13 Thread Nicolas Hoizey
> I've just uploaded a new version of the Cycle Plugin: > http://malsup.com/jquery/cycle/ It really rocks! > This new version adds some new transition effects, the ability to > create custom transitions[...] Transitions are now defined using a > plugin scheme. This means you can create your ow

[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] 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: 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] 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. H

[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 div

[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: Why jQuery over Mootools

2007-08-13 Thread Mike Fern
>On 8/13/07, Eridius <[EMAIL PROTECTED]> 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()

[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] 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 dece

[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; fas

[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 exp

[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]> wr

[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 - My

[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; $('test').appendTo(doc.body

[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: 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 clueTi

[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 be

[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')}) .blur(function()

[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: 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 de

[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 im

[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

[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

[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: 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 fx.St

[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

[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 ( tags) have all been loaded at the point your c

[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: 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 Subje

[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: how to use $(html) to create element in another frame?

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

[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

[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: 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 of

[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.

[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_nexus&act=gallery&ta... > > tHanks again > > On Aug 13, 4:3

  1   2   >