[jQuery] Re: remove() Method Causes Flicker in Firefox

2008-11-01 Thread [EMAIL PROTECTED]
Not sure why you would remove the photo... What happens when you hide it. On my G4 mac everything looks good except on the photo of Little Dave Thompson. It moves up and down as it comes in. No flicker but it doesn't look right. I think your problem is related to different dimension in your

[jQuery] Re: New plugin: jquery.smoothDivScroll-0.5.js

2008-11-01 Thread Sam Sherlock
Nice stuff there. I have been playing around with it I would like to be able to click on the arrows and advance more rapidly through the scrollablearea. Guess this might be going against what your trying to do. Perhaps also some class should be added so that certain styling is applied where js

[jQuery] Re: Unresponsive script when navigating away

2008-11-01 Thread Karl Rudd
Instead of doing the search each time, cache the selected objects. script type=text/javascript $(document).ready(function (){ var checkboxes = $('div[name=limit1] label input[type=checkbox]'); checkboxes.bind('click',function(){

[jQuery] Re: Unresponsive script when navigating away

2008-11-01 Thread Karl Rudd
Oh and :checkbox is a shortcut for input[type=checkbox]. Karl Rudd On Sat, Nov 1, 2008 at 6:05 PM, Karl Rudd [EMAIL PROTECTED] wrote: Instead of doing the search each time, cache the selected objects. script type=text/javascript $(document).ready(function (){ var

[jQuery] Re: resolving namespace conflicts

2008-11-01 Thread Karl Rudd
Have a look at this link: http://docs.jquery.com/Using_jQuery_with_Other_Libraries Karl Rudd On Thu, Oct 30, 2008 at 6:24 AM, bbc [EMAIL PROTECTED] wrote: Hello, I'm planning to distribute my website's services to my clients using javascript, much like google map or ShareThis service.

[jQuery] how disable text box based on select setting

2008-11-01 Thread stvwlf
Hi I am new to jQuery - appreciate some help. I found some code that hides a textbox when a dropdown is set to a specific value. That works fine. $(document).ready(function(){ if($('select[name=costType] :selected').val() == 'fr'){

[jQuery] [ tooltip ]

2008-11-01 Thread .nu
Hi. Not sure this is a bug, but having text inside diamond brackets, the text wont show. for example: img src='test.png' title=Hello - this image is called test. / the tooltip will just show Hello - this image is called

[jQuery] Advanced table/grid - like donjon

2008-11-01 Thread vdhant
Hi guys Just wondering if anyone knows of a plugin that would allow you to do this - http://support.castleproject.org/projects/FACILITIES/issuesbrowser. If you have a look at the page, the column headers have sorts/filters and then on the right up the top are the sorts/filters again. But more

[jQuery] Element absolute positioning for scolling - kinda - improveverywhere's site??

2008-11-01 Thread vdhant
Hi guys About a year ago I was on http://improveverywhere.com site (i think) and they had a cool feature which I am pretty sure was implemented using jquery. Basically there was a div which contains next and previous which in the layout appears about 150px down the page. The navigation div

[jQuery] Re: New plugin: jquery.smoothDivScroll-0.5.js

2008-11-01 Thread Thomas Kahn
Sam Sherlock wrote: Nice stuff there. I have been playing around with it I would like to be able to click on the arrows and advance more rapidly through the scrollablearea. Guess this might be going against what your trying to do. Adding a click event that makes the scrolling go faster is

[jQuery] selected index for li item

2008-11-01 Thread bigD
hi.. i am trying to get selected index for unordered list ul. i am using jcarousellite and need to get the index of the currently displayed image. basically i need to display image x of y where x is current index and y is total images. i got total images by this var div = $(.anyClass); ul = $(ul,

[jQuery] Re: Plugin with API questions.

2008-11-01 Thread Balazs Endresz
By extending with $.extend you can't do that because the scope of the parameter is outside the plugin. You have to declare them inside $.fn.sample so they all will have the same scope: (function($) { $.fn.sample = function(options) { // local variable bound to the current instance:

[jQuery] Re: get paragraph text from a ul

2008-11-01 Thread Olaf Bosch
yoyoryu schrieb: i'm new to jquery and have a problem with a ul. i'm trying to get the value of p from the list can someone help me out? jquery- $(.menu_item).click(function(){ if ($(this).('p').text = 'Home') {

[jQuery] Re: New plugin: jquery.smoothDivScroll-0.5.js

2008-11-01 Thread Mike Alsup
    All improvements and suggestions are welcome! Some quick comments on the code itself, not the implementation, just the technical bits: 1.) Your plugin is not chainable. The plugin function should 'return this' to honor jQuery's chaining model. For example, this will fail:

[jQuery] Re: [ tooltip ]

2008-11-01 Thread PiHi
img src='test.png' title='Hello - this image is called lt;testgt;' / On 11月1日, 下午1时41分, .nu [EMAIL PROTECTED] wrote: Hi. Not sure this is a bug, but having text inside diamond brackets, the text wont show. for example: img src='test.png' title=Hello - this image is called test. / the

[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-11-01 Thread Gilles (Webunity)
I expect to release around 8 september On Oct 31, 2:09 pm, Gilles (Webunity) [EMAIL PROTECTED] wrote: p.s. at this time, IE seems a bit buggy, have to fix that before i release any code. I am also using some PNG files right now, which i have to change into transparent gifs (IE). On Oct 31,

[jQuery] Re: New plugin: jquery.smoothDivScroll-0.5.js

2008-11-01 Thread Thomas Kahn
Thanks a million Mike! This is EXACTLY the kind of tips'n'tricks that I need to learn. I will address all the things you point out as soon as I have the time! /Thomas Mike Alsup wrote: All improvements and suggestions are welcome! Some quick comments on the code itself, not the

[jQuery] Newbie: Sequencial fadeOut / FadeIn effects

2008-11-01 Thread Alexandre
Hi all, I wonder if someone here could help me with a basic js syntax I'm not familiar with. The portion of script shown below is performing a simple hide div content show another div content when hovering on a link. It works well, but these two actions are performed simultaneously. I would like

[jQuery] Re: Newbie: Sequencial fadeOut / FadeIn effects

2008-11-01 Thread Mauricio (Maujor) Samy Silva
Hi Alexandre, You must call the fadeIn() as soon as the fadeOut() ends, so move the fadeIn() from the chaining assigning a callback function to fade Out() like the following: $(document).ready(function() { $(#menu a).hover(function(){ $section = $(this).attr(name);

[jQuery] Re: how disable text box based on select setting

2008-11-01 Thread MorningZ
if you have select id=Drop1 option value=1One/option option value=2Two/option option value=3Three/option /select input type=text id=Text1 disabled=disabled / And for example you want Text1 enabled if Drop1 = 3, then $(#Drop1).change(function() { if ($(drp).val() == 3) {

[jQuery] Re: Advanced table/grid - like donjon

2008-11-01 Thread MorningZ
The link you provide doesn't help much since it requires singup/login On Nov 1, 3:15 am, vdhant [EMAIL PROTECTED] wrote: Hi guys Just wondering if anyone knows of a plugin that would allow you to do this -http://support.castleproject.org/projects/FACILITIES/issuesbrowser. If you have a look

[jQuery] Re: Newbie: Sequencial fadeOut / FadeIn effects

2008-11-01 Thread Alexandre
Thanks a lot for answering me, but I've already tried that with no success. The two solutions : * http://proz.co.nz/public/test1.html * http://proz.co.nz/public/test2.html The first one works but simultaneously, the second one just don't work :/ Where could I be wrong ? As always, it's a human

[jQuery] Re: Newbie: Sequencial fadeOut / FadeIn effects

2008-11-01 Thread Mauricio (Maujor) Samy Silva
Alexandre Please, have a look at: http://jsbin.com/oluba Maurício -Mensagem Original- De: Alexandre [EMAIL PROTECTED] Para: jQuery (English) jquery-en@googlegroups.com Enviada em: sábado, 1 de novembro de 2008 12:00 Assunto: [jQuery] Re: Newbie: Sequencial fadeOut / FadeIn effects

[jQuery] Re: Newbie: Sequencial fadeOut / FadeIn effects

2008-11-01 Thread Alexandre
Indeed that's the solution, thanks again ! On Nov 1, 3:15 pm, Mauricio \(Maujor\) Samy Silva [EMAIL PROTECTED] wrote: Alexandre Please, have a look at:http://jsbin.com/oluba Maurício -Mensagem Original- De: Alexandre [EMAIL PROTECTED] Para: jQuery (English)

[jQuery] Re: jquery ui tabs - screen jumps to top when clicked

2008-11-01 Thread Ed
Klaus, Do you see any errors in my example? I added your code and double checked everything (w/ firebug). Clicking the tabs still causes the page to jump to top. Can you take a look? What am I doing wrong? http://5bosses.com/examples/tabs/sample_tabs.html -Ed On Oct 31, 8:13 am, Klaus

[jQuery] Get All Values/Text and Add a ;

2008-11-01 Thread jetm
In multiple select: select id=select1 name=select1 multiple=multiple optionFlowers/option optionShrubs/option optionTrees/option /select I want with a output like this: Flowers2; Shrubs2; Trees2; I using this var str = ; $(#select2).each(function(){ str +=

[jQuery] Get all values/text and modify each one

2008-11-01 Thread jetm
With a multiple select: select id=select1 name=select1 multiple=multiple optionFlowers/option optionShrubs/option optionTrees/option /select I want output like this: Flowers2; Shrubs2; Trees2; I using: var str = ; $(#select2).each(function(){ str += $(this).text()

[jQuery] Re: Get All Values/Text and Add a ;

2008-11-01 Thread Jay
On Nov 1, 8:54 am, jetm [EMAIL PROTECTED] wrote: In multiple select:   select id=select1 name=select1 multiple=multiple     optionFlowers/option     optionShrubs/option     optionTrees/option   /select I want with a output like this: Flowers2; Shrubs2; Trees2; I using this       var

[jQuery] Re: Newbie: Sequencial fadeOut / FadeIn effects

2008-11-01 Thread Alexandre
Great solution, but I'm now stuck with hiding the content on load. I don't want to disturb anyone but... well... hm. A little push ?

[jQuery] Re: Get All Values/Text and Add a ;

2008-11-01 Thread jetm
On Nov 1, 10:47 am, Jay [EMAIL PROTECTED] wrote: On Nov 1, 8:54 am, jetm [EMAIL PROTECTED] wrote: In multiple select:   select id=select1 name=select1 multiple=multiple     optionFlowers/option     optionShrubs/option     optionTrees/option   /select I want with a output

[jQuery] Re: Get All Values/Text and Add a ;

2008-11-01 Thread Jay
You're using each() to extract the selected options. That will not work as written. You need to select the child nodes that are option's, See the selector below. You also need to move the result write after the end of the loop. html head script src=jquery-1.2.6.min.js

[jQuery] Re: get paragraph text from a ul

2008-11-01 Thread yoyoryu
i want my menu to be dynamic and i want some menu items to be expandable. i know that a will not work cause i have tried it out. but there has to be some way to get the p text of the li selected. i have tried some code but every li i click redirects to the page and if it has some submenu items

[jQuery] help for plugin

2008-11-01 Thread diego
Hi all, i'm trying to improve my plugin http://www.pirolab.it/pirobox/ My problem is to create the next and prev buttons function to call next and prev image, i'm not a programmer and your help would be great, more brains works better than one :) here is the script

[jQuery] Re: Scroll Up Headline Reader ... with reverse button.

2008-11-01 Thread Karl Swedberg
Hi there, I'd recommend having a look at the Cycle plugin. It has tons of options that you can use, including next/prev functions, thumbnails, etc. Have a look through the demo pages, as they show just how versatile this plugin is: http://malsup.com/jquery/cycle --Karl

[jQuery] Re: please check website before launch

2008-11-01 Thread Alexandre Plennevaux
hi ricardo, thanks for sticking in!! yes, i have that issue too, but i guess i can solve it quite easily by preloading it first and foremost. now, i should work on a help section and i consider this work done. was fun to do, but oh, so underpaid :) On Sat, Nov 1, 2008 at 2:51 AM, ricardobeat

[jQuery] Re: Advice on sIEve/Drip?

2008-11-01 Thread Jeffrey Kretz
*bump* From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeffrey Kretz Sent: Friday, October 31, 2008 4:56 PM To: jquery-en@googlegroups.com Subject: [jQuery] Advice on sIEve/Drip While debugging my application (which makes heavy use of jQuery), after several hours IE

[jQuery] Re: Get All Values/Text and Add a ;

2008-11-01 Thread jetm
On Nov 1, 11:15 am, Jay [EMAIL PROTECTED] wrote: You're using each() to extract the selected options. That will not work as written. You need to select the child nodes that are option's, See the selector below. You also need to move the result write after the end of the loop. html head

[jQuery] Re: Get all values/text and modify each one

2008-11-01 Thread jetm
On Nov 1, 9:43 am, jetm [EMAIL PROTECTED] wrote: With a multiple select:  select id=select1 name=select1 multiple=multiple    optionFlowers/option    optionShrubs/option    optionTrees/option  /select I want output like this: Flowers2; Shrubs2; Trees2; I using:      var str = ;    

[jQuery] Re: please check website before launch

2008-11-01 Thread Alexandre
Hi, Your page loads pretty well here (about 10 sec for all). The afterload impression is quite what now ?, then a random click, and uh... ok, lets try to understand this bizarre thing. Half of the visitors should abandon here, since they are lazy to make any effort by themselves. I honestly would

[jQuery] Exclude inputs when using the keypress event

2008-11-01 Thread ryanfitzer
I'm building in a few keypress events into a site and I'm having trouble keeping them from triggering when a text field has focus. For some reason this only happens on the second if statement. The first one does fine. What am I missing? The code: $('*:not(:input)').keypress(function(e){

[jQuery] Re: Advanced table/grid - like donjon

2008-11-01 Thread vdhant
ya sorry about that... I can only say that its free to sign up and that you can use an openid account if you have that (i.e. any yahoo account works). I don't know of any other sites that use donjon or have a grid like this. If you do signin and check it out i think it will be worth it, the grid

[jQuery] Re: please check website before launch

2008-11-01 Thread Alexandre Plennevaux
Hi Alexandre, very interesting approach, this internal dialog that you report. Thanks for it. I could propose a short introduction to address this initial what now?. Basically, what needs to be said is : move your mouse over the barcode lines to access lisa pram's photo sets. You can use the

[jQuery] Re: Exclude inputs when using the keypress event

2008-11-01 Thread Dan Switzer
Ryan, I'm building in a few keypress events into a site and I'm having trouble keeping them from triggering when a text field has focus. For some reason this only happens on the second if statement. The first one does fine. What am I missing? The code:

[jQuery] Re: remove() Method Causes Flicker in Firefox

2008-11-01 Thread Joe
I have to remove it, because the code directly following shows it loading the new image and appending it to the parent div. So in order for the image that was faded out to not be there, it has to be removed. Once all the rows of the table have been clicked on, they images are cached and then I

[jQuery] Re: [jquery-dev] Re: XPath for objects

2008-11-01 Thread chris thatcher
I posted a very bare bones project on github, jquery.jsonpath uses jquery.collection(Ariel Flesler flesler.blogspot.com), json2.js (JSON.org), and Stefan Goessner (goessner.net) jsonpath to provide a simple jquery-like selector engine for large javascript objects. I'd like it to become a useful

[jQuery] Re: Exclude inputs when using the keypress event

2008-11-01 Thread Girish Venkatachalam
On 14:53:28 Nov 01, ryanfitzer wrote: I'm building in a few keypress events into a site and I'm having trouble keeping them from triggering when a text field has focus. For some reason this only happens on the second if statement. The first one does fine. What am I missing? I am not

[jQuery] Re: Scroll Up Headline Reader ... with reverse button.

2008-11-01 Thread Girish Venkatachalam
On 15:51:45 Nov 01, Karl Swedberg wrote: Hi there, I'd recommend having a look at the Cycle plugin. It has tons of options that you can use, including next/prev functions, thumbnails, etc. Have a look through the demo pages, as they show just how versatile this plugin is:

[jQuery] Trying to grasp basics of scrolling a TBODY

2008-11-01 Thread KenDowns
I'm trying to grasp the basics of scrolling to a particular row in a TABLE. Let's say you've got a TABLE, with a TBODY that has a fixed height and overflow: scroll. It appears I ought to be able to use core functions like offset() and scrollTop() to work out where a row is and scroll the TBODY

[jQuery] Accordion

2008-11-01 Thread Frankjr
Hi all, I am a js idiot, but I did manage to get a page up and working. My problem is that I want all accordions closed initially and can't seem to find the solution. (The first one is always extended.) I thought 'all closed' was the default but apparently not. Here is the test url:

[jQuery] Re: Exclude inputs when using the keypress event

2008-11-01 Thread ryanfitzer
Thanks Dan! That looks to be what I was missing. I kept trying focus() but for some reason it always came back false even if I was in an input. Ryan On Nov 1, 3:31 pm, Dan Switzer [EMAIL PROTECTED] wrote: Ryan, I'm building in a few keypress events into a site and I'm having trouble

[jQuery] Re: Exclude inputs when using the keypress event

2008-11-01 Thread ryanfitzer
Thanks Girish. I'll look into the plugin you linked to. Btw, the reason I'm using single keys is to keep from conflicting with any OS or Browser hotkeys. I've also grown to prefer them because of Gmail and Google Reader. Ryan On Nov 1, 7:20 pm, Girish Venkatachalam [EMAIL PROTECTED] wrote: On

[jQuery] Re: Exclude inputs when using the keypress event

2008-11-01 Thread Girish Venkatachalam
On 20:12:23 Nov 01, ryanfitzer wrote: Thanks Girish. I'll look into the plugin you linked to. Btw, the reason I'm using single keys is to keep from conflicting with any OS or Browser hotkeys. I've also grown to prefer them because of Gmail and Google Reader. I guess it is a matter of