[jQuery] Re: RELEASE: Easing Plugin 1.3 - Now with default easing

2007-11-15 Thread george.gsgd
Haha, that good huh? On Nov 13, 9:19 am, george.gsgd [EMAIL PROTECTED] wrote: Hi All, I've just updated the easing plugin so you can now specify a default equation for all your animations. http://gsgd.co.uk/sandbox/jquery/easing/ Should make plugin integration much simpler. It

[jQuery] bind and one to avoid event-bubbling

2007-11-15 Thread julio
Hi, I have this situation: When I click on an element (A), a new element (B) of same type is overlayed to A on foreground. When I click on B, B disappares and remain A on foreground. When I re- click on A 2 elements B are overlayed instead of 1. I guess this is a problem of event-bubbling, and

[jQuery] Re: css(...,function(){ return ...;})

2007-11-15 Thread XASD
But $('#page').css('display',function(){ return 'none'; }); not work for me:-(

[jQuery] Re: clueTip 'rounded' theme issue with showTitle: false

2007-11-15 Thread Geoff Millikan
I like the arrows on the rounded corners! Nice! Example #1 on the Rounded Corners Theme doesn't really work because the content in the clueTip is shifted down, out of vertical alignment within the clueTip. I'm guessing maybe it can be shifted up by playing with the padding? I'll give it a

[jQuery] Getting the values of the Dropdownlist, inside a DialogBox

2007-11-15 Thread kiruba
I am having one dialog box in a.aspx, in some scenario dialogbox will be opened.In that Dialog box,there is one Dropdownlist box. The users can able to select the values. I want to get the selected value of the DropDownListBox which is inside the dialog box.

[jQuery] Problem unbinding event from button (function binds event each time it is run)

2007-11-15 Thread window.close
Hello, i have a problem with a function (functionB) i bind to the click event of a button. Every time the function (functionA) which binds this event is called, it adds functionB another time. So after i called functionA five times, functionB runs five times on button click. I tried to unbind

[jQuery] Use Sortable and Droppable together can't work in IE (but work in Firefox)

2007-11-15 Thread heobay
I'm having a problem with using Sortable and Droppable (interface plugin for jquery) together.My Idea is drag an item into a container (dropable), and then when I drop it there is one new item will be created in the container item and I want the new items can sort together in the container. As

[jQuery] Re: What causes the speed bottleneck in Javascript?

2007-11-15 Thread Gordon
Just because the code is open source doesn't mean there's no usage restrictions in what you can do with it. Most open source licenses take a dim view of using open source code in closed source commercial software, as there's always a risk that if it was allowed then the commercial organization

[jQuery] Re: hiding checkbox AND label?

2007-11-15 Thread Gordon
If your HTML is like this: labelLabel text hereinput type=checkbox //label then you can give the label an ID and hide that. label id=myLabel1Label text hereinput type=checkbox //label $('#myLabel1').hide (); If you're using the FOR attribute to hide then there are a few approaches. The

[jQuery] Changes repository

2007-11-15 Thread ad4m
Hi! I was wondering where i can find changes history between jquery versions. Actually i need to know changes between version 1.0.x and 1.1.1. Know where i can find such informations? -- Serdecznie pozdrawiam, Adam Ludwinski [EMAIL PROTECTED] http://www.ludwinski.net

[jQuery] Re: History Plugin initial state

2007-11-15 Thread Klaus Hartl
On Nov 14, 9:13 pm, dandanthesushiman [EMAIL PROTECTED] wrote: Thanks for the quick reply, but my lack of knowledge means I stil don't get it I am trying $(function() { $('a.remote').remote('#chapter', function() { if (window.console window.console.info)

[jQuery] Re: jquery.ifixpng.js IE 7 Transparency is Black instead of transparent

2007-11-15 Thread Rick Faircloth
Hi, Guy... Why wouldn't you use if lt IE 7 instead of lte ? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guy Fraser Sent: Wednesday, November 14, 2007 10:23 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re:

[jQuery] Re: clueTip 'rounded' theme issue with showTitle: false

2007-11-15 Thread Karl Swedberg
Hi Geoff, Thanks for checking out the plugin! Example #1 on the Rounded Corners Theme doesn't really work because the content in the clueTip is shifted down, out of vertical alignment within the clueTip. I'm guessing maybe it can be shifted up by playing with the padding? I'll give it a shot

[jQuery] Re: Delibarately create ajax errors from PHP script

2007-11-15 Thread Wizzud
In terms of the ajax call, the fact that the php script has returned data (empty or otherwise) is a success, and you can't alter that. The ajax call does not itself care what is in the data, simply that the communication with the backend script was successfully completed. You therefore need to

[jQuery] Re: hiding checkbox AND label?

2007-11-15 Thread Priest, James (NIH/NIEHS) [C]
-Original Message- From: Gordon [mailto:[EMAIL PROTECTED] Be aware there is a slight speed penalty for using classes instead of IDs, and there's a quite substantial speed penalty for using [] attribute matching instead of IDs or classes. For that reason I'd recommend using IDs

[jQuery] Re: bind and one to avoid event-bubbling

2007-11-15 Thread Wizzud
If you don't need to remove the click functions then they can simply remain in place, and therefore do not need unbinding/re-binding; but you should return false from the click handler to prevent the click event going any further than the intended handler ... $(#elementA).click( function () {

[jQuery] Re: css(...,function(){ return ...;})

2007-11-15 Thread Wizzud
...but once again it works perfectly for me! Checklist: - I am using jQuery v1.2.1 - I do have an element (a DIV) with the id of 'page' in my document - my script is within a $(document).ready() function - all other jQuery script in that document works correctly - for testing purposes, this was

[jQuery] Re: Problem unbinding event from button (function binds event each time it is run)

2007-11-15 Thread Wizzud
Assuming that function A can be called an unknown/unspecified number of times before #button may actually be clicked, and that what happens when #button is eventually clicked is determined by the most recent call to function A, then ... this.functionA = function(parameter1, parameter2){

[jQuery] Re: bind and one to avoid event-bubbling

2007-11-15 Thread Shawn
Try this: $(#elementA).unbind(click).click( function () { $(#elementB).show(); }); $(#elementB).unbind(click).click( function () { $(this).hide(); }); The problem is not event bubbling per se. It's more a case of you are adding element B, then applying event handlers. At a later time,

[jQuery] jRails plugin: jQuery on Rails

2007-11-15 Thread Aaron
Hey all, I've just built a plugin a that allows you to use jQuery as a replacement for Prototype/script.aculo.us in Rails. It also includes some of the visual effects that were missing since 1.2 came out and broke compatibility with interface. I still have work to do on the visual effects piece

[jQuery] Re: Problem unbinding event from button (function binds event each time it is run)

2007-11-15 Thread window.close
Hello Wizzud and thank you for your reply! Assuming that function A can be called an unknown/unspecified number of times before #button may actually be clicked, and that what happens when #button is eventually clicked is determined by the most recent call to function A, then ... No, after

[jQuery] Re: Delibarately create ajax errors from PHP script

2007-11-15 Thread Eric Martin
You could force your PHP to respond with an error header, but I personally don't think that is a very good practice. What I've done in the past is have the PHP script return a JSON response that would look something like: In the case of no validation errors: {'valid':'true'} In the case of

[jQuery] Re: Why plugin repository dont have a search?

2007-11-15 Thread Aaron Barker
I agree that this feature is sorely needed. The wiki being the old way of posting plugins, may not be kept up to date with current versions or new plugins. It's always a guess as to what category something might be in. What is the definition of some of the categories like widgets, tools and

[jQuery] Browser Exit Event

2007-11-15 Thread [EMAIL PROTECTED]
I'd just like to know what the jQuery best practice for catching the browser exit event is? I'm creating a sort of icon field like a windows desktop -- when a user logs out of the app, or exits the browser I want to persist the positions of the icons which may have changed since the app loaded. I

[jQuery] jquery cycle repositing of pager div according to each image height

2007-11-15 Thread Doctorado 2005-2006 DUyOT UPM
hi! i was trying without success to get the pager repositioned with each height of my image. I would like to get the pager always exactly on below where the image ends - for now I can only position de pager on a specific distance and it does not change with the different heights of my images -

[jQuery] Re: Getting the values of the Dropdownlist, inside a DialogBox

2007-11-15 Thread Eric Martin
What have you tried so far? Can you post some code? -Eric On Nov 15, 12:33 am, kiruba [EMAIL PROTECTED] wrote: I am having one dialog box in a.aspx, in some scenario dialogbox will be opened.In that Dialog box,there is one Dropdownlist box. The users can able to select the values.

[jQuery] Re: HELP with default tooltip

2007-11-15 Thread Karl Swedberg
Hi Andrea, Maybe this would work? (untested) $('a:has(img)').each(function() { var $this = $(this); var aTitle = $this.attr('title'); var imgAlt = $('img', $this).attr('alt'); $this.hover(function() { $this.removeAttr('title'); $('img',$this).removeAttr('alt'); }, function() {

[jQuery] Re: RELEASE: Easing Plugin 1.3 - Now with default easing

2007-11-15 Thread Glen Lipka
Nice work. You forgot to update the version at the top of the file. Thanks for this great plugin. Glen On Nov 15, 2007 1:57 AM, george.gsgd [EMAIL PROTECTED] wrote: Haha, that good huh? On Nov 13, 9:19 am, george.gsgd [EMAIL PROTECTED] wrote: Hi All, I've just updated the easing

[jQuery] OT: Javascript OOP / Class Design

2007-11-15 Thread Brook Davies
Hello, This is a bit OT sorry, but I don't know where else to post this JS related question. My question is about using design patterns and OOP principles in Javascript. I am trying to determine the best way to build a photo album application, where the user can layout many photos and

[jQuery] Re: Adressing the right area

2007-11-15 Thread Glen Lipka
I whipped up a demo for you. http://www.commadot.com/jquery/createDomElements.php Is it something like that? (Open up one of the questions and click reply.) The Live Jquery plugin really makes this sort of thing very easy. Rather than append all the textareas all at once, just do it when the

[jQuery] help for a zoom image

2007-11-15 Thread Alexandre Boca
Hello, I have a problem with my zoom image. I try to make the same zoom image as you can see on gap website : http://www.gap.com/browse/product.do?cid=5168pid=472867 Here, is an example of my zoom = http://www.hybridbears.com/zoombox/ As you can see the second example doesnt work as well. Can

[jQuery] Delibarately create ajax errors from PHP script

2007-11-15 Thread Irfan
Sorry if this has been posted before but I searched the group and could not find a clue. I have a problem which I believe has a simple solution but could not come up with a good way. While using Jquery with PHP, I want error checking to be implemented on the server side - with PHP. As it's much

[jQuery] Re: Horizontal Scroll Content Help

2007-11-15 Thread Limit-Studios
Thanks do you have any clearer examples I'm kinda new to this jquery stuff.

[jQuery] jQuery site down - docs

2007-11-15 Thread Priest, James (NIH/NIEHS) [C]
Anyone have an alternate URL for the jQuery docs - seems like the site is down and I need help :) Thanks, Jim

[jQuery] ColdFusion/jQuery Ajax Form Variables Question

2007-11-15 Thread MikeyJ
Hi All, I'm a relative newb when it comes to the Ajax concept so be gentle. :-) Let me tell you what I've got... Main page with a dynamic select box that lists vendors. When I make a selection I'm using $(#vform).load(editvendor.cfm,{vid: $(this).val()}); to load a form into a div on the main

[jQuery] Re: jquery.ifixpng.js IE 7 Transparency is Black instead of transparent

2007-11-15 Thread cfdvlpr
My IE 7 doesn't seem to support PNGs like yours does. How about in the head: !--[if lt IE 7.] script type=text/javascript src=/jquery/plugins/ jquery.ifixpng.js/script ![endif]-- !--[if gte IE 7.] script defer type=text/javascript src=/javascript/pngfix.js/ script ![endif]-- And

[jQuery] Re: HELP with default tooltip

2007-11-15 Thread [EMAIL PROTECTED]
Thank you Karl, is working fine. A question. here is the code I was trying to use. What was wrong in that?? $('#icons_banner a').hover(function(){ $this = $(this); var tip = $(this).attr('title');

[jQuery] UI Tabs - Close a tab with a separate button

2007-11-15 Thread ccieszyn
Hi, I'm using the following javascript to to run a fade/slide/close- able UI box with UI tabs: pre script type=text/javascript $(function() { $('#navcontainer ul').tabs({ unselect: true, fxSlide: true, fxFade: true, fxSpeed: 'medium'

[jQuery] Triggering event added by addEventListener

2007-11-15 Thread prakash
Hello all, I recently started using jQuery in Greasemonkey scripts and am loving it. I have two Greasemonkey scripts running on a page. Script A adds an element to the page and binds a mouseover handler using DOM addEventListener method. This script is not using jQuery. Script B wants to

[jQuery] Re: HELP with default tooltip

2007-11-15 Thread tlphipps
You can have jquery set the title and alt attributes to blank strings in the document.ready Example: $(#someid_or_other_selector).attr(title, ).attr(alt,); On Nov 15, 10:41 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I need to prevent the browsers ( All ) to show the title link and the

[jQuery] Re: hiding checkbox AND label?

2007-11-15 Thread Priest, James (NIH/NIEHS) [C]
-Original Message- From: Karl Swedberg [mailto:[EMAIL PROTECTED] Forgive me if you've already posted it, but would you mind showing us the HTML? Labels can wrap around an input, but they don't have to, so seeing what the relationship is between the label and the input

[jQuery] Floated content inside droppable list

2007-11-15 Thread asle
Hi, I am using Interface droppable code. I have a UL list. Inside each LI I want to have to float a form with a picture to the right. Since the LI has no position property, the form does not position correctly. If I put position:relative on the droppable LIs they do not drop in place but where

[jQuery] Re: HELP with default tooltip

2007-11-15 Thread Karl Swedberg
Hi Andrea, It looks like you defined the variable inside the mouseover function, which forms a closure, so the mouseout function can't access it. Placing the var tip... line before the $('#icons_banner a').hover(... line ensures that both mouseover and mouseout can use it. Does that

[jQuery] Re: Selectors in IFrame

2007-11-15 Thread Jeffrey Kretz
Dealing with frames can be a bit tricky. The syntax you describe below is an IE-only solution. There are some different ways to access the document within the frame. All browsers support window.frames[] as an indexer. If there is only one frame on the page, window.frames[0] will work. You

[jQuery] Re: jQuery site down - docs

2007-11-15 Thread dehneg
You can try http://www.visualjquery.com/ for jQuery 1.1.2, Alex

[jQuery] Re: Browser Exit Event

2007-11-15 Thread Bil Corry
[EMAIL PROTECTED] wrote on 11/15/2007 8:12 AM: I'd just like to know what the jQuery best practice for catching the browser exit event is? Probably just bind your code to the onunload event. From the jQuery docs: $(window).unload( function () { alert(Bye now!); } ); More info

[jQuery] Re: hiding checkbox AND label?

2007-11-15 Thread Karl Swedberg
Hi Jim, First of all, feel free to change this selector to match some more meaningful HTML on your page: $('div.demo-show:eq(0) ... I doubt you'll need the :eq(0) part, and the demo-show class was for a demo, so you can safely change that in the HTML and match the change in the jQuery.

[jQuery] Re: hiding checkbox AND label?

2007-11-15 Thread Priest, James (NIH/NIEHS) [C]
-Original Message- From: Karl Swedberg [mailto:[EMAIL PROTECTED] Forgive me if you've already posted it, but would you mind showing us the HTML? Labels can wrap around an input, but they don't have to, so seeing what the relationship is between the label and the input

[jQuery] .trigger() behaviour revisited

2007-11-15 Thread Cliff
(I originally mistakenly sent this directly to John rather than the mailing list. Sorry!) The old thread at http://groups.google.com/group/jquery-en/browse_thread/thread/5ea3458c3daf660/9552dbee5c8374a9 [which I am apparently unable to reply directly to, hence the accidental send

[jQuery] Re: clueTip 'rounded' theme issue with showTitle: false

2007-11-15 Thread Shelane
Do you have a demo with the arrow and the shadowed theme (first set)? I noticed that each version is getting smaller in k size. What's your secret? On Nov 15, 5:48 am, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Geoff, Thanks for checking out the plugin! Example #1 on the Rounded Corners

[jQuery] Re: hiding checkbox AND label?

2007-11-15 Thread Priest, James (NIH/NIEHS) [C]
-Original Message- From: Karl Swedberg [mailto:[EMAIL PROTECTED] $('div.demo-show:eq(0) ... I doubt you'll need the :eq(0) part, and the demo-show class was for a demo, so you can safely change that in the HTML and match the change in the jQuery. Yeah - I just wanted to keep

[jQuery] Re: hiding checkbox AND label?

2007-11-15 Thread Priest, James (NIH/NIEHS) [C]
Sorry - I hate Outlook... -Original Message- From: Karl Swedberg [mailto:[EMAIL PROTECTED] $('div.demo-show:eq(0) ... I doubt you'll need the :eq(0) part, and the demo-show class was for a demo, so you can safely change that in the HTML and match the change in the

[jQuery] Find text in a list item, remove it and replace with an image tag.

2007-11-15 Thread desmond
Hi all, I am a bit stuck here, I've been looking around, but can't seem to find what I'm after. I am fairly new to Jquery and Javascript, so not sure exactly what to look for. Basically I have the following HTML: div id=topNavigation ul class=firstLevel li class=homea

[jQuery] Re: OT: Javascript OOP / Class Design

2007-11-15 Thread RobG
On Nov 16, 1:37 am, Brook Davies [EMAIL PROTECTED] wrote: Hello, This is a bit OT sorry, but I don't know where else to post this JS related question. My question is about using design patterns and OOP principles in Javascript. You could try news:comp.lang.javascript URL:

[jQuery] Re: Find text in a list item, remove it and replace with an image tag.

2007-11-15 Thread Andy Matthews
Why would you want to keep the bold tag if it's just going to be wrapped around an image? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of desmond Sent: Thursday, November 15, 2007 1:00 PM To: jQuery (English) Subject: [jQuery] Find text in a

[jQuery] Re: Transparent PNG backgrounds with superfish

2007-11-15 Thread Joel Birch
Hi Olivier, AFAIK, IE can only apply one filter at a time, so when you apply the PNG fix that's your one filter used and then Superfish's opacity animations will not work after that. That's why when you change the code so that the PNG fix is applied after the animation it works for that first

[jQuery] Re: Triggering event added by addEventListener

2007-11-15 Thread Brandon Aaron
The best approach will be to just use jQuery to bind the method if you want to trigger that event. -- Brandon Aaron On Nov 15, 11:49 am, prakash [EMAIL PROTECTED] wrote: Hello all, I recently started using jQuery in Greasemonkey scripts and am loving it. I have two Greasemonkey scripts

[jQuery] Re: RELEASE: Easing Plugin 1.3 - Now with default easing

2007-11-15 Thread Marshall Salinger
I second that. Kudos to you George for creating this plug-in. I use it for every project. Thanks! -Marshall Glen Lipka wrote: Nice work. You forgot to update the version at the top of the file. Thanks for this great plugin. Glen On Nov 15, 2007 1:57 AM, george.gsgd [EMAIL

[jQuery] Selectors in IFrame

2007-11-15 Thread chrismarx
What would be a jQuery equivalent for this iFrameTable.document.getElementsByTagName(td) if iFrameTable is the id of the iframe?

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

2007-11-15 Thread Josh Nathanson
Hi Andres, Josh here, the ClockPick plugin creator...both the hour and minute container have a class of CP, so you should be able to use bgIframe on that class without changing the ClockPick plugin itself. Somewhere after you include the ClockPick script, add this: $(.CP).bgIframe(); Give

[jQuery] Re: HELP with default tooltip

2007-11-15 Thread [EMAIL PROTECTED]
yes Karl thanks for explanation. Andrea On Nov 15, 1:45 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Andrea, It looks like you defined the variable inside the mouseover function, which forms a closure, so the mouseout function can't access it. Placing the var tip... line before the

[jQuery] Re: Scriptdoc-file for jQuery 1.2.1

2007-11-15 Thread Tom Sieroń
On Nov 15, 2007 3:47 PM, dehneg [EMAIL PROTECTED] wrote: Scriptdoc file is a good **standard** to integrate documentation in any IDE. It is also a good way to work with documentation. I suppose that Yehuda Katz use the jQuery scriptdoc file to generate is Visual jQuery Documentation

[jQuery] Re: Floated content inside droppable list

2007-11-15 Thread asle
Sorry, this is of course SORTABLE and not droppable. Hope this makes the question clearer!

[jQuery] I need use bgIframe plugin with ClockPick puglin

2007-11-15 Thread [EMAIL PROTECTED]
Hi, I´m new. I want to use the bgIframe plugin with ClockPick puglin, because I have a select near to the clockPick and when you make a click and the clockpick expands the select is always first in Internet Explorer. I made this change in the ClockPick.js but only fix the div of the hours, not

[jQuery] Re: [OT] WYSIWYG for Safari

2007-11-15 Thread Jake McGraw
Thanks for getting back to me, after researching the issue, it appears all JavaScript WYSIWYG editors for Safari 2.0.4 and lower can not properly detect the Tab event. After some consideration, we've decided to drop support for Safari 2.0.4 and lower. Thanks for the suggestion though. - jake On

[jQuery] Adressing the right area

2007-11-15 Thread Merlin
Hi there, I am a beginner in Jquery and need some help to get started. I would like to create a functionality that provides a button underneath each user comment of a picture reply, that would on clicking it show a reply field. Now this does not sound so hard, does it?! It looks hard to me.

[jQuery] Re: Changes repository

2007-11-15 Thread Cloudream
docs.jquery.com jquery.com/blog On Nov 15, 7:16 pm, ad4m [EMAIL PROTECTED] wrote: Hi! I was wondering where i can find changes history between jquery versions. Actually i need to know changes between version 1.0.x and 1.1.1. Know where i can find such informations? -- Serdecznie

[jQuery] Re: Error in droppable.js

2007-11-15 Thread alex clemesha
On Nov 14, 2007 11:42 PM, yogi [EMAIL PROTECTED] wrote: Hi guys , I am using the droppables.js on my site and this js file was directly linked to teh jquery. Today I found a bug in teh droppable.js file.For some resons its giving a helperSize.width javascript error on the browser and also

[jQuery] Re: Scriptdoc-file for jQuery 1.2.1

2007-11-15 Thread Brandon Aaron
We moved to the wiki for many good reasons. One of them being it provides a very good mechanism for allowing the community to contribute to the betterment of the docs. Another reason is it provides some necessary flexibility for documenting things like selectors. There are current efforts to get

[jQuery] Transparent PNG backgrounds with superfish

2007-11-15 Thread Olivier Percebois-Garve
hi I am trying to get transparent png background to run on the drop-dowm menus of superfish. I tried unsuccessfully to the 2 related jquery plugins : pngfix and ifixpng. Both are resulting in the following error : 'filter.match' is nul or not an object Those scripts are AFAIK hiding the

[jQuery] Re: jquery.ifixpng.js IE 7 Transparency is Black instead of transparent

2007-11-15 Thread Guy Fraser
cfdvlpr wrote: My IE 7 doesn't seem to support PNGs like yours does. How about in the head: !--[if lt IE 7.] script type=text/javascript src=/jquery/plugins/ jquery.ifixpng.js/script ![endif]-- !--[if gte IE 7.] script defer type=text/javascript src=/javascript/pngfix.js/

[jQuery] Re: UI Tabs - Close a tab with a separate button

2007-11-15 Thread Klaus Hartl
On Nov 15, 4:03 pm, ccieszyn [EMAIL PROTECTED] wrote: Hi, I'm using the following javascript to to run a fade/slide/close- able UI box with UI tabs: pre script type=text/javascript $(function() { $('#navcontainer ul').tabs({

[jQuery] AJAX form submission in CakePHP with jQuery Form Plugin?

2007-11-15 Thread Action
I was wondering if any of you jQuery + CakePHP users could help me out here... I have a blog-like page that contains a post, comments, and a new comment form. I want the new comment form to submit using ajax and have the newly added comment appear in the comments list. Currently, I'm using the

[jQuery] Re: Browser Exit Event

2007-11-15 Thread Klaus Hartl
On Nov 15, 9:35 pm, Bil Corry [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote on 11/15/2007 8:12 AM: I'd just like to know what the jQuery best practice for catching the browser exit event is? Probably just bind your code to the onunload event. From the jQuery docs:

[jQuery] Re: Need a cookie to cap the frequency of my sliding div

2007-11-15 Thread somnamblst
And the solution is... $(document).ready(function() { initSlideboxes(); function initSlideboxes() { if(!document.cookie.match(slidedToday)){ var oneDay = new Date(); oneDay.setDate(oneDay.getDate()+1); document.cookie=slidedToday=true;path=/;expires=+oneDay.toGMTString();

[jQuery] Re: Draggables IE7 problem

2007-11-15 Thread Jason
I think I had the same problem you're having. IE sometimes doesn't like absolute positioning to the right. Just change it to left and you'll be ok. On Oct 28, 1:15 am, fiasst [EMAIL PROTECTED] wrote: Hi there, I'm using jQuery for a ecommerce site I'm working on. It's usingDraggables and the

[jQuery] jquery Tabs plugin

2007-11-15 Thread [EMAIL PROTECTED]
hi, someone has used this plugin here?, I've looked that at Firefox it works great, but at I.explorer 6 it doen't. Someone know to fix it? I've yet posted a bug at jquery bugtrack site.

[jQuery] each help

2007-11-15 Thread rayfidelity
Hi, I have this in each row (a couple of rows...) input type=text class=num name=qty[] value= onkeyup=javascript:test(); / input type=text class=num name=price[] value= onkeyup=javascript:test(); / input type=text class=num name=row_sum[] value= disabled / i'd like to calculate the data