[jQuery] Re: Cycle Plug-in works with ajax on first call, not on subsquent calls

2008-11-04 Thread pedalpete
Thanks Mike, here's the link and a description of how to get it to not work.. http://zifimusic.com/cycle The cycle loads perfectly the first time (you see it load after a few seconds - it will say 'feature artists' , and that will scroll through the cycle). Then, if you filter the list of resul

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

2008-11-04 Thread Pixelstuff
Thanks for pointing out the Cycle plugin. I had seen it in passing, but didn't go past the home page and didn't realize just how much it could do. It is amazing. Also thanks for tip about the Ariel Flesler plugins. However it doesn't look like they create a seamless rolling loop (more of a scrol

[jQuery] Re: Google Charts

2008-11-04 Thread moscorp
i'm using http://keith-wood.name/gChart.html On 11月5日, 午後12:59, moscorp <[EMAIL PROTECTED]> wrote: > gchart can't recognize series data in barVert... > > can't work in > var valueArray = $('#mpngicnt').text(); //80,30,50 > series: [ $.gchart.series([ valueArray ], 'red')], > > but it works in > s

[jQuery] Google Charts

2008-11-04 Thread moscorp
gchart can't recognize series data in barVert... can't work in var valueArray = $('#mpngicnt').text(); //80,30,50 series: [ $.gchart.series([ valueArray ], 'red')], but it works in series: [ $.gchart.series([ 80,30,50 ], 'red')], how can i solve it !

[jQuery] Re: Addition on Strings

2008-11-04 Thread MorningZ
just assuming the ID of the table is "table1", and the rows you want to add are enclosed in , then (untested, but makes sense) var TotalPrice = 0.0; $("#table1 tbody tr").each(functon() { TotalPrice = TotalPrice + parseFloat($ (this).find("td:nth(4)").text()); }); // 'Total Price' now has

[jQuery] order of script not right (explained inside)

2008-11-04 Thread FastNOC
I'm doing development on two sites right now. both are quite far from finished. I liked the panel script from http://www.javascriptkit.com/script/script2/dropdownpanel.shtml here and it works. You can see it here: (no this isn't advertising. almost all links are dead, there's no content and not

[jQuery] Re: Photo Tagging (Notes)

2008-11-04 Thread Dr. Tarique Sani
On Tue, Nov 4, 2008 at 9:36 PM, Crazy-Achmet <[EMAIL PROTECTED]> wrote: > > Maybe there is 1 jQuery Plugin to work on over here: > http://www.sanisoft.com/blog/2008/05/26/img-notes-jquery-plugin/ > I am the author of that plugin and I can assure you that ImgNotes is just geared up to displaying n

[jQuery] Re: JQuery Countdown

2008-11-04 Thread ami'n
Is there any workaround for this i wonder why i'm still unable to make it work? $(function(){ $('#countdown2').countdown({until: '+7D +7H +22M +56S ', format: 'yODHMS', layout: '%S%n %l%S, %M%n %l%M, %H%n %l%H, and %D%n %l%D'}); }); there's still an error On Oct 29, 5:17 pm, B3 <[E

[jQuery] filter().find() are not returning elements

2008-11-04 Thread SteveS
Hello, I'm still a newbie at jQuery and I'm having some trouble trying to select some nodes from XML. I'm simply trying to display the value in the Value element. For some reason, it returns zero elements. var xml = "123"; $(xml).filter("MyPlace").find("Value").each(function() { alert(

[jQuery] Re: clueTip issue with ASP.NET GridView

2008-11-04 Thread Karl Swedberg
Hi Bob, Do you have a page I can look at to see what's going on there? thanks, --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 3, 2008, at 12:27 PM, bgibilaro wrote: All, I am new to clueTip and I am having a rather peculiar problem. I have an asp.

[jQuery] Re: Cycle Plug-in works with ajax on first call, not on subsquent calls

2008-11-04 Thread Mike Alsup
> I had assumed that stopping the 'cycle' would clear it and allow me to > reassign it, but apparently that isn't working. > > I've tried > [code] >                                      $('div.allPops').cycle('stop'); >                                         $('div#popList').empty(); >          

[jQuery] Re: Can I make jquery not fail silently??

2008-11-04 Thread Mike Alsup
> And currently it's also the only way to get an empty jQuery object, as > an empty selector will return 'document'. You can get an empty jQuery object like this: var $empty = $([]);

[jQuery] Ajax cross site (same domain) problems

2008-11-04 Thread kudu
I am attempting to call page through ajax accross different sites within the same doman. The error displayed is: Access to restricted URI denied" code: "1012" I have set document.domain to reflect the shared domain i.e. calling foo.baz.com/myscript.php from bar.baz.com having set document.domain

[jQuery] Addition on Strings

2008-11-04 Thread africanshox
i have a table that gets populated with a row like this based on an event name | color | size | price the price format is e.g 30.00 when a new line with a price is added i want the subtotal to be calculated using jquery how can i achieve this?

[jQuery] Can Jquery fetch file, and display download dialog?

2008-11-04 Thread Genu
Ok here is my problem: I have a link: http://www.myserver.com/01-01-08-PM.mp3"; class="download" id="7">Download I wrote this js: var $j = jQuery.noConflict(); $j(document).ready(function() { $j('.download').click(function() { var link = $j(this).attr('href');

[jQuery] Can Jquery fetch file, and display download dialog?

2008-11-04 Thread Genu
Ok here is my problem. I generate this link with PHP: http://www.myServer.com/2008/01-01-08- PM.mp3">Download then I have this js: var $j = jQuery.noConflict(); $j(document).ready(function() { $j('.download').click(function() { var link = $j(this).attr('href');

[jQuery] Can Jquery fetch file, and display download dialog?

2008-11-04 Thread Genu
Ok here is my problem. I generate this link with PHP: http://www.myServer.com/2008/01-01-08- PM.mp3">Download then I have this js: var $j = jQuery.noConflict(); $j(document).ready(function() { $j('.download').click(function() { var link = $j(this).attr('href');

[jQuery] Problems with the JSON return from the jQuery.ajax() method

2008-11-04 Thread Augusto TMW
Hi, I'm trying do return a JSON with a $.ajax() method. here is my entire function: function carregaMes(d){ if(!(_reunioes["reg"+d.month+d.year])){ $.ajax({ url: "reunioes.jsp", data: "mes="+d.month+"&ano="+d.year, async: false,

[jQuery] noob question: loading dynamic content with .load()

2008-11-04 Thread HiddenPhoenix
im kinda a noob with some of this jquery stuff. esp the ajax stuff so any help i can get here would be greatly appreciated. i am using this code to try to load new content into my content div. $("myContentDiv").load("myScript.php?var1=x&var2=y&var3=z") myScript.php generates my new content to

[jQuery] best way to pass parameters to .load()

2008-11-04 Thread HiddenPhoenix
is there a difference in passing parameters to .load $("#myDiv").load("myScript.php?var=x&var2=y&var3=z") vs $("#myDiv").load("myScript.php", {var:x, var2:y, var3:z}) also is there a size limit to how much .load can handle? can myScript.php return a couple hundred rows of data without issue?

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread Klaus Hartl
My bad. Try this instead: var $tabs = $('#staff-tab > ul').tabs({ cookie: { expires: 30 } }); $('a', $tabs).click(function() { if ( $(this).parent().hasClass('ui-tabs-selected') ) { $tabs.tabs('load', $('a', $tabs).index(this)); } }); --Klaus On 4 Nov., 23:19, fleabo <[EMAIL PR

[jQuery] Re: Cycle Plug-in works with ajax on first call, not on subsquent calls

2008-11-04 Thread pedalpete
Thanks Mike, I had assumed that stopping the 'cycle' would clear it and allow me to reassign it, but apparently that isn't working. I've tried [code] $('div.allPops').cycle('stop'); $('div#popList').empty();

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread fleabo
I've used your code like this (maybe it's not the right way); $(document).ready(function(){ var $tabs = $('#staff-tab > ul').tabs({ select: function(e, ui) { if (ui.index === $tabs

[jQuery] Re: Can I make jquery not fail silently??

2008-11-04 Thread ricardobeat
And currently it's also the only way to get an empty jQuery object, as an empty selector will return 'document'. I thought that the plus sign would always concatenate if it's used after a string. Just tested it and I can't make it evaluate as NaN, only with "string"+(+var). Are you missing someth

[jQuery] Re: Destroy Interval at DOM Object removal

2008-11-04 Thread ricardobeat
On Nov 4, 5:54 pm, Pom <[EMAIL PROTECTED]> wrote: > I wanted to check this on each iteration of the timer. In a perfect > world the function fired by the timer would check if the element it > was about to alter is still in the dom. If not, it should clear the > timer associated with the element. >

[jQuery] Toggle and Nested Divs

2008-11-04 Thread [EMAIL PROTECTED]
Hi all. I have an outer div that contains several child divs (event search form that lets the user pick dates, categories, etc...). The user can toggle the outer div and the child divs as well. This all works for me AS LONG AS the outer div is visible and not able to be toggled. When I let the us

[jQuery] Re: Fast trim implementation

2008-11-04 Thread ricardobeat
Very clever implementation of yours. I believe the question is *what for* is the function being currently used? I believe most common cases are very short (<15 chars) strings, usually small bits of data that are going to be thrown as hash keys or something. In that case the standard regexp versio

[jQuery] Re: How to determine filter used to select $(this)?

2008-11-04 Thread ricardobeat
I don't know the core enough to know if it is possible or not, but you can just check it again: $('[onabort],[onblur],[onchange]').each(function(){ var $this = $(this); $this.css('border','1px solid #000'); if ( $this.attr('onabort') ) { // abort } else if ( $this.

[jQuery] Re: Accordion

2008-11-04 Thread Frank J Ryan
Hi Olaf, The accordion is closed when the page loads as I had wanted. The following is what is in the head section to do that. I appreciate your response as that is what got me on the right path. active: true, alwaysOpen: false, animated: 'easeslide', a

[jQuery] Re: JQuery Cycle + $.load question. 's not appearing but they seem to be cycling.

2008-11-04 Thread lampshade
Thanks for the response. As it turned out, yeah I had set the width and height for the two divs inside, but not for the main div that was actually being cycled. This solved the problem. On Oct 30, 5:14 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > The problem is that, although cycle seems to be

[jQuery] Re: How to solve this

2008-11-04 Thread Shawn
Or submit the form from code: $("input[type='submit'").click( function () { $("#informUserText").show(); $("form").submit(); $return false; }); On Tuesday 04 November 2008 13:53:51 Mauricio (Maujor) Samy Silva wrote: > Do not cancel the default action for the click event with the statement

[jQuery] Re: More elegant solution to assigning function pointers?

2008-11-04 Thread Mike Alsup
> I'm trying to pass a function an array of buttons and function > pointers. What I want to do is to assign functions to the arbitrary > list of buttons. At the moment, I'm using: > >                                 if (button_text !== undefined){ >                                         for (var

[jQuery] Re: How to solve this

2008-11-04 Thread Mauricio (Maujor) Samy Silva
Do not cancel the default action for the click event with the statement return false; Try to remove that line from your code. Mauricio -Mensagem Original- De: "Johny" <[EMAIL PROTECTED]> Para: "jQuery (English)" Enviada em: terça-feira, 4 de novembro de 2008 14:49 Assunto: [jQuery]

[jQuery] Re: How to solve this

2008-11-04 Thread Mike Alsup
>         $('[EMAIL PROTECTED]').click(function() { >          $('#InformUserText').show(); > >                  return false; >          }); > > The text ( see InformUserText) is shown but the action script from the > form, see MyURL, is not called. > Can you please help how to say to a user that

[jQuery] Re: Can I make jquery not fail silently??

2008-11-04 Thread Mike Alsup
> Is there some way to tell jQuery to actually throw errors instead of > failing silently? It's not a failure to run a query and find nothing - that's a perfectly valid use case.

[jQuery] Re: replacing content with .get madness

2008-11-04 Thread Mike Alsup
> $(document).ready(function(){ >          $("select").change(getData); >          function getData() { >                  var idRep = $("#estados").val(); >                 alert($('repDesc').html()) // returns null () >                 $('repDesc').empty() >                 alert($('repDesc'

[jQuery] Re: Cycle Plug-in works with ajax on first call, not on subsquent calls

2008-11-04 Thread Mike Alsup
> Any idea on how to stop/remove the cycle function and then restart it? To stop: $('#mySlideshow').cycle('stop'); To restart (same as first start): $('#mySlideshow').cycle([ // your options here });

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-04 Thread Mike Alsup
> Awesome, thanks. > Can I also use prepend or addslides to add something like this:  ' href=1>' Yes.

[jQuery] More elegant solution to assigning function pointers?

2008-11-04 Thread Victor
Hey, I'm trying to pass a function an array of buttons and function pointers. What I want to do is to assign functions to the arbitrary list of buttons. At the moment, I'm using: if (button_text !== undefined){ for (var vars

[jQuery] replacing content with .get madness

2008-11-04 Thread Marcelo Wolfgang
Hi all, I'm trying to change some html inside a div with ajax, after the user change the value of a drop down, but I 'cant make it work, it has been some time I've last coded with jquery and it seems I'm a bit rusted, can someone help me please? I've banging my head on this for the some time now

[jQuery] Re: Remove() xml nodes doesnt work in ie

2008-11-04 Thread alexalcan
I also have this problem, but also in xhtml documents. I recently ignored the problem since I could simple replace it with an appendTo(), but I now must completely remove the object (a div) and can't do it in IE.

[jQuery] Can I make jquery not fail silently??

2008-11-04 Thread brian
I make mistakes. Sometimes I should write code like: $("#divEditUnit_" + UnitID).fadeOut(); I expect "#divEditUnit_" + UnitID to evaluate to something like #divEditUnit_f3c23142-e933-4e13-ada3-2592893dc17c, which would be nice since I have a div with an id of divEditUnit_f3c23142-e933-4e13- ad

[jQuery] How to solve this

2008-11-04 Thread Johny
I have a form The form uploads a large file so that I would like to inform a user to wait, after he pushes the submit button. So I have ... ... $('[EMAIL PROTECTED]').click(function() { $('#InformUserText').show(); return false; });

[jQuery] Treeview and Search Engines

2008-11-04 Thread TypicallyTropical
Hi Are links to pages in 'Treeview' valid for Search Engines. Can Search Engines follow the links? Thanks SC

[jQuery] [Treeview] How many nodes can it handle?

2008-11-04 Thread Sarah Taraporewalla
I am using the treeview jquery plugin: http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ I have a tree with 56 nodes in the top level. When I load this tree, I keep getting a stop script. Is this too many nodes for the tree to handle? Cheers Sarah

[jQuery] Re: Show/Hide. Could someone, please, help me with this?

2008-11-04 Thread pedalpete
Should be pretty simple Miguel. The first thing I would do is add an ID to each legend and/or image you want to trigger the show so you can tell which one has been clicked and add a common class to all the legends and images. Then put the id as a class of the fieldset you would like to show/ hide

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-04 Thread OutOfTouch
On Nov 4, 10:08 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Can I still load the image but not cycle if there is only one image > > and also hide the prev/next buttons? > > Sure. I just mean that cycle will not function with only a single > slide. You can manipulate the DOM however you choose,

[jQuery] Re: Destroy Interval at DOM Object removal

2008-11-04 Thread Pom
I wanted to check this on each iteration of the timer. In a perfect world the function fired by the timer would check if the element it was about to alter is still in the dom. If not, it should clear the timer associated with the element. Having only one timer would kinda make the whole code as a

[jQuery] Advise me - data in openoffice spreadsheet - best way to manip. with jquery

2008-11-04 Thread Devin
Hi, I know I have been posting on here a lot. I hope thats ok. 2 things: a) I'm new to jquery and I want to learn as much as I can, b) I have projects going at work and personal projects. So I have data in a spread sheet, Open Office.org. So I can export it in a few different formats. The dat

[jQuery] Re: method to convert object to query string?

2008-11-04 Thread mattkime
http://docs.jquery.com/Internals/jQuery.param var str = jQuery.param(params); On Nov 3, 4:01 pm, mattkime <[EMAIL PROTECTED]> wrote: > Does jQuery provide a util to convert an object to a query string? > > I'm converting a project from mootools using Hash.toQueryString to > jQuery. > > (p.s., I'

[jQuery] Re: Best AutoComplete PlugIn

2008-11-04 Thread Jörn Zaefferer
Lets put it this way: The plugin is stable and useful for a lot of people, and maybe the best jQuery based autocomplete solution available, in terms of supported features and tested code. But its not good enough yet to include it in jQuery UI. Jörn On Tue, Nov 4, 2008 at 4:45 PM, MorningZ <[EMAIL

[jQuery] Re: [ToolTip] Suggestion/queestion

2008-11-04 Thread Jörn Zaefferer
Maybe this: text Jörn On Tue, Nov 4, 2008 at 3:50 PM, AenimA <[EMAIL PROTECTED]> wrote: > > Hello, > > Is it possible to use the tooltips in some similar fashion. > > S > > This would make it much easier to use the thing on a heavily async > page that has alot of messages that come from some ar

[jQuery] Re: pure CSS hover problem

2008-11-04 Thread Geuis
Ernes, can you post your html and CSS? Feel free to email me directly if you want. [EMAIL PROTECTED] On Nov 4, 8:22 am, "Enes Fazli" <[EMAIL PROTECTED]> wrote: > Hello everybody, > > I have a menu that is similar to the fourth example > onhttp://users.tpg.com.au/j_birch/plugins/superfish/. The p

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread Klaus Hartl
Well, if the tab initially loads that form, the code I've posted should work. --Klaus On 4 Nov., 17:57, bogno <[EMAIL PROTECTED]> wrote: > Sorry, should of specified. I want to reload a blank (original load) form. I > am using it for a ticket system, so if someone wants to submit a second > ti

[jQuery] How to determine filter used to select $(this)?

2008-11-04 Thread Geuis
If I do a match that is using multiple selectors, how(or is it possible) do I know which filter was used to select the item in the current index? For example: $('*[onabort],*[onblur],*[onchange]').each(function(){ $(this).css('border','1px solid #000'); }); This scans the DOM for any eleme

[jQuery] Re: Corners - jQuery Port needed

2008-11-04 Thread Göran Törnquist
Funny thing is that it didn't show up properly until I turned on Javascript for the site. /Göran Giuliano Marcangelo wrote: Glen, this has nothing to do with javascript whatsoever.it is pure CSS so what is there to port ? 2008/11/4 Glen Lipka <[EMAIL PROT

[jQuery] Cycle Plug-in works with ajax on first call, not on subsquent calls

2008-11-04 Thread pedalpete
Hey jqueriers! I've been working on implementing a carousel on my live music site HearWhere so that I can scroll through popular shows. After playing with a few different plug-ins, I settled on the AMAZING cycle plugin by Mike Alsup. I've got the cycle working on my dev site http://zifimusic.com/

[jQuery] Re: Corners - jQuery Port needed

2008-11-04 Thread Giuliano Marcangelo
Glen, this has nothing to do with javascript whatsoever.it is pure CSS so what is there to port ? 2008/11/4 Glen Lipka <[EMAIL PROTECTED]> > This is a really neat technique. > http://www.schillmania.com/projects/dialog2/ > > Unfortunately, it isn't jQuery. > Anyo

[jQuery] Show/Hide. Could someone, please, help me with this?

2008-11-04 Thread shapper
Hello, I have a form as following: Personal Data Options I would like to hide/show each fieldset when its legend is clicked ... ... or even better, adding a small icon on legend or somewhere in fieldset to toogle visibility. How can I do this with JQuery

[jQuery] Corners - jQuery Port needed

2008-11-04 Thread Glen Lipka
This is a really neat technique.http://www.schillmania.com/projects/dialog2/ Unfortunately, it isn't jQuery. Anyone want to try and port the idea? I wish could just "do" this without the need for a graphic. Glen

[jQuery] Re: mouseover text for select option

2008-11-04 Thread ricardobeat
use $("#fooinfo").html( $("#fooselect").val() ); to get the current selection text! On Nov 4, 1:36 pm, hschulz <[EMAIL PROTECTED]> wrote: > Hello, > > i want to display some additional information in a div, while > selecting an option from a select. > It works so far, except that it always displa

[jQuery] Re: delay delivery of a link

2008-11-04 Thread MorningZ
So something like http://www.someite.com";>Some External Site http://www.someotherite.com";>Some External Site 2 Some Internal Page //This would pop an alert box that they must click to continue $("a").click(function() { var ref = this.href.toLowerCase(); if (ref.substr(0, 7) == "ht

[jQuery] Re: Event trigger ajax event

2008-11-04 Thread Nic Hubbard
Mike, I was actually trying to understand your jQuery Form Plugin, where you use an iframe for file uploads. You call $.event.trigger("ajaxStart"), and this is what I wanted to do. I was creating a small site specific script that can use ajax or an iframe to submit a form, but I wanted to use t

[jQuery] Re: delay delivery of a link

2008-11-04 Thread mbraybrook
Javascript has a setTimeOut() function - this can delay the call of a javascript function by a specified time. http://www.w3schools.com/js/js_timing.asp - for more info. M On Nov 4, 4:45 pm, Manuel Meyer <[EMAIL PROTECTED]> wrote: > Hey, > is there a way of delay the delivery of a link? > The i

[jQuery] Re: how to parse tags with the name of ?

2008-11-04 Thread AlexC
Sure - the steps I did are ... I'm following the tutorial at : http://www.webmonkey.com/tutorial/Easy_XML_Consumption_using_jQuery?oldid=20032 Firstly without any modifications the tutorial works as expected, no probs... 1 - download and unzip the 'Example_Files.zip' file from the Getting Start

[jQuery] Re: where are the plugin demos?

2008-11-04 Thread mbraybrook
! Where is your sense of adventure!? If everyone told us what their scripts did - they'd get no enjoyment out of watching us struggle... M On Oct 28, 9:05 pm, JCQ <[EMAIL PROTECTED]> wrote: > thanks, Mark. > > yes, I'm definitely in the right place --- I just did an interesting > test. I rando

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread bogno
Sorry, should of specified. I want to reload a blank (original load) form. I am using it for a ticket system, so if someone wants to submit a second ticket, all they have to do is click on the tab to get an empty form. At present I use the tabs option { unselect: true } which works but requires

[jQuery] Re: [Superfish] pure CSS hover problem

2008-11-04 Thread Mark Spurlock
why dont you put a container element of equal width around each set of submenus so that it will take up the entire space regardless of number of items?

[jQuery] ie accordion glitch

2008-11-04 Thread powrtoch
Hi everybody. So I've more or less developed a solid accordion menu. It works flawlessly in FF and Opera, has a tiny bump in Safari that I'm not really worried about, and is completely horrid in IE (i'm using IE 7). It seems to display the hidden section and then take it away again before it actu

[jQuery] [Superfish] pure CSS hover problem

2008-11-04 Thread Enes Fazli
Hello everybody, I have a menu that is similar to the fourth example on http://users.tpg.com.au/j_birch/plugins/superfish/. The problem exists only if JS is deactivated. If for example the second menu item is activated and I hover over the first menu item (long menu item) I still see the last sub

[jQuery] Actions on single div with common class

2008-11-04 Thread evo
Hi, I'm having trouble figuring out how I can perform say, a hide animation on a div, by clicking a button on one div, which uses a class used by other divs. *Lets say I have this:* Delete Message text Delete Message text Delete Message text *then the jquery is: *$("a.delete").click(fu

jquery-en@googlegroups.com

2008-11-04 Thread Omid
I`m using new version of Round Corner plug-in . Of course I`m using some other jQuery plugin in my page and I think my problem is related to other plugin too . For example I`m using Jquery Cycle Plugin in my page . On Nov 3, 10:44 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > I used this code in

[jQuery] delay delivery of a link

2008-11-04 Thread Manuel Meyer
Hey, is there a way of delay the delivery of a link? The idea I have is to display a disclaimer in case a -element, pointing to an external site, is clicked. To ensure the user can read this disclaimer, i would like to delay the browser for 1 or 2 seconds, as ie Opera reacts very fast, while

[jQuery] Re: Destroy Interval at DOM Object removal

2008-11-04 Thread ricardobeat
You could attach a flag that the element is in use by the plugin, like: $(this).data('rotate',true); But in what event or how often would you check for elements with this flag to see if they still exist, and how would you access the internal interval var? It's a hard task. And you can't check fo

[jQuery] Issues with the paging button when using table sorter

2008-11-04 Thread livewire9174
Hi, When using the pager option when using the table sorter, has anybody managed to put the buttons above the table? It just wont work for me when above it.

[jQuery] Fast trim implementation

2008-11-04 Thread Ariel Flesler
Hi As a follow up to Steven Levithan's post about string trimming[1]. I made a second version of trim that is performing quite well among different browsers (the 1st one I posted on his blog). If you're interested, I wrote an article[2] about this. If the implementation proves to be well rounded

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-11-04 Thread Klaus Hartl
What does "reload the form" mean? Reloading the result of the formerly submitted form or load a blank form again? The former will be a bit more complicated. --Klaus On 4 Nov., 14:34, bogno <[EMAIL PROTECTED]> wrote: > I can't seem to get this to work. > > I have a tab that I load a form into, s

[jQuery] Re: Large text files via AJAX

2008-11-04 Thread list-jquery
On Tue, 4 Nov 2008 08:38:14 -0600, "Andy Matthews" <[EMAIL PROTECTED]> said: > > Honestly it sounds like this isn't a good use of AJAX. Wasn't reallty > intended for use with 1mb+ files. While the majority of my files are smaller than that, yeah, I'm hitting a problem here. I'm starting to wond

[jQuery] Re: Unresponsive script when navigating away

2008-11-04 Thread ricardobeat
Why not use input type="radio" instead of checkboxes? That would allow you to restrict users to a single choice without any javascript. Also, "name" is not a valid attribute for a , giving it an ID will make your query way faster. Event delegation can help too: $('#limit1').click(function(e){

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-04 Thread Mike Alsup
> > > Thanks for the help with the change event hookup and the new example. > > > Can I have no slides preloaded and just load them on the fly? > > > No, when you call cycle there must be at least two slides in the > > container. > > Can I still load the image but not cycle if there is only one im

[jQuery] Re: Firefox is showing error console with no errors?

2008-11-04 Thread ricardobeat
You've probably seen this already, but on the order now page I got this: Warning : mysql_data_seek() [ function.mysql-data-seek ]: Offset 0 is invalid for MySQL result index 5 (or the query data is unbuffered) in /nfs/c01/h02/mnt/33205/domains/clients.blazemelbourne.com.au/html/ cc/order.php on l

[jQuery] Re: Crossbrowser problem with Jquery Extension fieldSelection

2008-11-04 Thread Diego Pessoa
Can someone help me? On Mon, Nov 3, 2008 at 19:40, Diego Pessoa <[EMAIL PROTECTED]> wrote: > > Hi, > I'm using the Jquery extension fieldSelection ( See at: > http://laboratorium.0xab.cd/jquery/fieldselection/0.2.3-test/test.html > ) > > This extension resolves the selectRange problem of the trad

[jQuery] mouseover text for select option

2008-11-04 Thread hschulz
Hello, i want to display some additional information in a div, while selecting an option from a select. It works so far, except that it always display the previous mouseover text. the used html qwertz option 2 option 3 option 4

[jQuery] [ToolTip] Suggestion/queestion

2008-11-04 Thread AenimA
Hello, Is it possible to use the tooltips in some similar fashion. S This would make it much easier to use the thing on a heavily async page that has alot of messages that come from some array that you iterate on a jsp. For example a list of news that has a field that should go into the toolt

[jQuery] Accordion script within a portlet

2008-11-04 Thread Karin
I'm trying to incorporate an accordion script into an IBM Websphere portlet. The scripts work fine on their own, but once I try putting it inside a portlet, then it will not work at all. I'm working in IE6. Any ideas?

[jQuery] Photo Tagging (Notes)

2008-11-04 Thread Crazy-Achmet
Hi, i was looking all over the web for a really cool picture tagging script in jQuery. The result of the search was, that there aren't any kind of cool solutions of that kind of script like facebook or flickr has. I found very similar script over here http://www.dustyd.net/projects/PhotoNotes bu

[jQuery] Re: Firefox is showing error console with no errors?

2008-11-04 Thread ricardobeat
Can't access the page, it requires registration. I tried registering and got this error: Warning: Cannot modify header information - headers already sent by (output started at /nfs/c01/h02/mnt/33205/domains/ clients.blazemelbourne.com.au/html/cc/inc/head.inc.php:10) in /nfs/c01/ h02/mnt/33205/do

[jQuery] Re: How to return element index in group

2008-11-04 Thread ienes
Okay, that works. Thanks very much. On 4 Lis, 13:34, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Did you have a look at the index method in the > documentation?http://docs.jquery.com/Core/index#subject > > So: > > var li = $('li').click(function() { >     alert(li.index(this)); > > }); > > --Klaus

[jQuery] Re: Best AutoComplete PlugIn

2008-11-04 Thread MorningZ
The fact that Jorn's implementation got "pushed back to 1.7" doesn't mean one single bit that it isn't a well designed and easy to use plugin With that said, "best" depends on a lot of things and you shouldn't be basing your decision on what some random person on the internet tells you is the "be

[jQuery] Re: How to enable right click on a jquery flot application

2008-11-04 Thread ricardobeat
Use the 'oncontextmenu' event: $('#flot').bind('contextmenu',function() { return false }); Be aware that it's not fully supported cross-browser, and most browsers have an option to disallow this. - ricardo On Nov 4, 3:54 am, "faizal iqbaal" <[EMAIL PROTECTED]> wrote: > Hi All, > > I have been

[jQuery] Re: Table sorter issue - trying to stop a field from sorting

2008-11-04 Thread MorningZ
There's an example right in his documentation http://tablesorter.com/docs/example-options-headers.html On Nov 4, 6:59 am, livewire9174 <[EMAIL PROTECTED]> wrote: > Hi, > Here is my code, I want to prevent the first field from being a sort > option, can somebody help? > > <-- >   "http://www.w3

[jQuery] Re: Tablesorter issue, can find images for the header.

2008-11-04 Thread MorningZ
The images are in the css file, you have to adjust the "background- image: url('...')" to be the location where you are hosting the images On Nov 4, 5:06 am, livewire9174 <[EMAIL PROTECTED]> wrote: > Hi, > I'm messing about with the tablesorter. The issue i am having is I > cant seem to

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-04 Thread OutOfTouch
On Nov 4, 5:59 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Thanks for the help with the change event hookup and the new example. > > Can I have no slides preloaded and just load them on the fly? > > No, when you call cycle there must be at least two slides in the > container. > Can I still loa

[jQuery] Re: Large text files via AJAX

2008-11-04 Thread Andy Matthews
Honestly it sounds like this isn't a good use of AJAX. Wasn't reallty intended for use with 1mb+ files. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, November 03, 2008 5:54 PM To: jquery-en@googlegroups.com Subje

[jQuery] Re: Gradientz

2008-11-04 Thread Rick Faircloth
Nice, weepy! Works nicely now in IE6, IE7, FF3, and Chrome... all that I tested. Thanks for the good work! Rick weepy wrote: Ok this is fixed -> I've just pushed a new version. Check again - it should be fixed. http://www.parkerfox.co.uk/labs/gradientz/ On 4 Nov, 14:37, Rick Faircloth <[

[jQuery] Re: Firefox flickering with tab-slider-script

2008-11-04 Thread weidc
Hi, where do you get a scrollbar? i don't get any. just if i remove the overflow-x: hidden; i get one. if i set: overflow-x: hidden; overflow-y: visible; i don't have any scrollbar. On 4 Nov., 15:47, Oskar Rough <[EMAIL PROTECTED]> wrote: > Hey Weidc, > > Thanks a lot, it removes the flicker al

[jQuery] Re: Gradientz

2008-11-04 Thread Andy Matthews
Man...how's that for service! Great job weepy! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of weepy Sent: Tuesday, November 04, 2008 8:41 AM To: jQuery (English) Subject: [jQuery] Re: Gradientz Ok this is fixed -> I've just pushed a new versi

[jQuery] Re: Firefox flickering with tab-slider-script

2008-11-04 Thread Oskar Rough
Hey Weidc, Thanks a lot, it removes the flicker alright but in return I get a scrollbar. Still better of course but would like to avoid having a scrollbar :-) On 4 Nov., 15:41, weidc <[EMAIL PROTECTED]> wrote: > Hi, > > if i set just the overflow-x: hidden; for the div with the > class="scroll"

[jQuery] Re: Gradientz

2008-11-04 Thread Rick Faircloth
Here's one way to modify the markup and get the text within the gradient area: This is the text in my gradient box! This will certainly save a lot of time creating background images! Rick Rick Faircloth wrote: Thanks, weepy... When you said it "

[jQuery] Re: Firefox flickering with tab-slider-script

2008-11-04 Thread weidc
Hi, if i set just the overflow-x: hidden; for the div with the class="scroll" instead of overflow:hidden; it works for me. On 4 Nov., 12:15, Oskar Rough <[EMAIL PROTECTED]> wrote: > Hi, > > I'm experiencing heavy flickering with a "coda-slider" script - only > in Firefox/WIN. It's available > h

  1   2   >