[jQuery] Re: jQuery show(), hide() problems

2009-01-26 Thread Anders Viklund
I found the problem, the first time showWindow was called I could see this error in firebug "jQuery.dequeue is not a function". I added this code and now it works fine ( function( $ ) { $.dequeue = function( a , b ){ return $(a).dequeue(b); }; })( jQuery )

[jQuery] Re: auto refresh after x seconds ???

2009-01-26 Thread Vik
You can try something like... function refreshRecordsDiv() { $("records").fadeOut("slow"); //ajax to refresh contents of records div, using one of jQuery's ajax functions $("records").fadeIn("slow"); setTimeout("refreshRecordsDiv();", 3); } $(document).ready(function() { setTi

[jQuery] Re: Toggle child elements

2009-01-26 Thread Wacko Jacko
Ok, thank. I understand this. What I am asking however is how I can accomplish what I am after? Any ideas? I would like for this div and the list inside of it to slide down / tween down into position together. On Jan 23, 9:52 am, donb wrote: > The example doesn't 'slide' it has a fixed top posi

[jQuery] auto refresh after x seconds ???

2009-01-26 Thread Omid
Hi, I`m using one portal that use YUI , but I`m not familiar with YUI ; So I`m looking for a solution with jQuery ; Problem : I have a #anything# in my page layout . Now I need to refresh #anything# content after 30 seconds in a AJAX manner (without reloading browser) . Also I would like to have

[jQuery] closure inside ajax method

2009-01-26 Thread bob
Hi, How can access index i inside of "complete" method? The following gives me just the last value of i. var scripts = ['script1.js', 'script2.js']; for(var i=0; i

[jQuery] Problem with document.getElementsById()

2009-01-26 Thread anjith
HI, I got a very different situation when writing program for ajax. Actually I need to get 55 rows from a table displayed in row format..now when i click the link (any of these 55 links) i need to get details immediately after the link for this i used ajaxthe problem i am dynamically th

[jQuery] Re: jQuery show(), hide() problems

2009-01-26 Thread Mike Alsup
> > 1) What is "TransferTo"? Hmm, isn't TransferTo an old "interface" fn? Another q, what does the event binding code look like? (ie: who is calling openWindow and closeWindow)

[jQuery] Re: jQuery show(), hide() problems

2009-01-26 Thread Rick Faircloth
There is one instance of .show() and once instance of .hide() in his code... > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of MorningZ > Sent: Monday, January 26, 2009 10:11 PM > To: jQuery (English) > Subject: [jQuery] Re: jQuery

[jQuery] Re: jQuery .post and.load with some PHP

2009-01-26 Thread Good Knight
The jQuery code should be as follows function sortItemCat(id) { var catList = $("#sortCat_"+id).text(); $.post('lib/loadItem.php', { catSortID: id }, function(data) { if(data != 'false'){ $("#itemList").load("lib/loadItem.php");

[jQuery] jQuery .post and.load with some PHP

2009-01-26 Thread Good Knight
Okay, so I have This PHP code. It creates a list of all the categories from database and it creates a div with all the items from the database. Each item is associated with a category id as to which category it is apart of. The list of categories should be clicked on and then the jQuery will run a

[jQuery] Re: jQuery show(), hide() problems

2009-01-26 Thread MorningZ
Few questions that may help others help you 1) What is "TransferTo"? 2) You say in the topic "show(), hide()" problems... there is no "hide ()" in that limited code you show 3) Why use "$()" in a few places and "jQuery()" in another? On Jan 26, 5:20 pm, viklund_anders wrote: > Hi, > > I would l

[jQuery] Re: Edit list of items in selector.

2009-01-26 Thread tom
sorry. i need download the plugin :) On Jan 26, 9:02 pm, tom wrote: > Thanks Donald. I'm still having trouble. I get, $ > ("#id_product").removeOption is not a function > > Where my js is, >

[jQuery] Re: Edit list of items in selector.

2009-01-26 Thread tom
Thanks Donald. I'm still having trouble. I get, $ ("#id_product").removeOption is not a function Where my js is,

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread Andronicus Riyono
On Tue, Jan 27, 2009 at 8:10 AM, Ricardo Tomasi wrote: > > I have to disagree. Precise circular motion is very hard with a mouse, > specially because most computers have cursor acceleration enabled - > it's impossible to draw a round shape. The up/down interaction method > is much easier to contro

[jQuery] Re: Edit list of items in selector.

2009-01-26 Thread Donald J. Organ IV
Take a look at this: http://www.texotela.co.uk/code/jquery/select/ - Original Message - From: "tom" To: "jQuery (English)" Sent: Monday, January 26, 2009 9:25:01 PM GMT -05:00 US/Canada Eastern Subject: [jQuery] Edit list of items in selector. Hello All, I am trying to reset the lis

[jQuery] Edit list of items in selector.

2009-01-26 Thread tom
Hello All, I am trying to reset the list of values in a selector with new a set values I have in a list of JSON objects. I dont know the proper syntax for doing this any help is greatly appreciated as I've searched the web for this and couldn't find anything on it. The only way I know would work

[jQuery] Formatting Anomaly in IE7 after Fadein?

2009-01-26 Thread Vik
I'm a total newbie to all the weird glitches that we have to deal with in IE7. I've just uploaded my site to my production server, and everything seems to be working except for a number of IE7 formatting errors. For example, on my home page, there's a button on the lower right called "Take a Sit

[jQuery] Re: disable submit not working in IE7

2009-01-26 Thread Mike Alsup
> The button is indeed of type="submit" and the form was working in IE > prior to adding the above script. > > I also changed the attribute value to true (removing the quotes). > > Sadly, I'm still getting the same results in IE. > > On Jan 26, 4:10 pm, Karl Swedberg wrote: > > > A couple things

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread CNN_news
ok, As usual after 4 hours messing with this and then posting on this list, it started working 5 minutes later. /Nagita On Jan 26, 5:16 pm, CNN_news wrote: > Hi Karl, sorry I have been working on this and I think you caught me > halfway though. > > I think I updated jquery correctly. > But it s

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread CNN_news
Hi Karl, sorry I have been working on this and I think you caught me halfway though. I think I updated jquery correctly. But it still does not work correctly and the opacity is wrong in FF and Opera (ok in IE). /Nagita On Jan 26, 4:04 pm, Karl Swedberg wrote: > Also, it looks like you're l

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread Ricardo Tomasi
I have to disagree. Precise circular motion is very hard with a mouse, specially because most computers have cursor acceleration enabled - it's impossible to draw a round shape. The up/down interaction method is much easier to control and a simple explanation should be enough to get someone starte

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread Ricardo Tomasi
That's exactly what's happening, you hold down the mouse button over the knob and drag UP/DOWN to increase/decrease the value. It's very intuitive if you have used any software whith knobs in it's interface. cheers, - ricardo On Jan 26, 7:47 pm, Eric Garside wrote: > I can't actually even get t

[jQuery] Re: [autocomplete] Problem with .result

2009-01-26 Thread Aaron Jensen
Yeah, we've run into this same trouble as well. It would be nice if there was a hook to handle this built into Autocomplete. On Mon, Jan 26, 2009 at 3:18 AM, Styx wrote: > > It dosen't work. > For example: I use tab key to navigate. If focus is set to input, id > will be empty. If I don't want

[jQuery] Re: jquery 1.2.6 focus problem?

2009-01-26 Thread Sam Sherlock
works fine for me with 1.2.6 and 1.3.1 also works here as expected http://www.whitehouse.gov/contact/ - using 1.2.6 works as expected Perhaps theres a gremlin in you code somewhere - do you have a link to see the issue? 2009/1/26 chris robinson > > Hey all, > > Our project is using 1.2.6, but

[jQuery] jQuery show(), hide() problems

2009-01-26 Thread viklund_anders
Hi, I would like some help to understand why this code works perfectly fine the first time I open the window and close it, after this I cannot open the window any more, unless I reload the page. Thanks for any ideas! function openWindow(messageText) { $("#append

[jQuery] problem with jQuery().TransferTo complete:

2009-01-26 Thread viklund_anders
Hi, I am having a problem with jQuery().TransferTo complete: The complete is only called the first time the method openWindow is invoked, why? This is the method invocation sequence openWindow -> Success closeWindow -> Success openWindow -> alert "inside if, opening window..." Success

[jQuery] jQuery show(), hide() problems

2009-01-26 Thread viklund_anders
Hi, I would like some help to understand why this code works perfectly fine the first time I open the window and close it, after this I cannot open the window any more, unless I reload the page. Thanks for any ideas! function openWindow(messageText) { $("#append

[jQuery] Re: disable submit not working in IE7

2009-01-26 Thread GBartels
Thank you Karl for the reply. The button is indeed of type="submit" and the form was working in IE prior to adding the above script. I also changed the attribute value to true (removing the quotes). Sadly, I'm still getting the same results in IE. On Jan 26, 4:10 pm, Karl Swedberg wrote: >

[jQuery] Re: disable submit not working in IE7

2009-01-26 Thread Karl Swedberg
A couple things you might want to look at: 1. Does your button have type="submit" ? It will need to if you want to submit with it in IE. 2. The disabled attribute value should be true, not "true". --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 26, 2

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread Karl Swedberg
Also, it looks like you're loading 2 copies of jQuery: jquery.js and jquery-1.1.3.1.pack.js That can't help matters. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 26, 2009, at 4:19 PM, Jörn Zaefferer wrote: You probably need to upgrade jQuery as w

[jQuery] Re: Any way to get all attibutes of a node?

2009-01-26 Thread Karl Swedberg
Hi David, I posted this in reply to a similar question a couple weeks ago: var a = $('yourNode')[0].attributes, attrs = []; for (i=0; i < a.length; i++) { attrs.push(a[i].nodeName + ': ' + a[i].nodeValue); } console.log(attrs); Not sure how well this will work in other browsers, but it does

[jQuery] Re: IE Reports 0 children()

2009-01-26 Thread Nicholas
Got it!! if(jQuery.browser.msie){ var doc = new ActiveXObject("MSXML2.DOMDocument.4.0"); doc.loadXML(xml) alert(jQuery("letter", doc).children().length); } On Jan 26, 1:39 pm, Nicholas wrote: > FF works fine, IE however reports 0

[jQuery] Re: Can jQuery calculate "CSS Width/Height"

2009-01-26 Thread Matt
$('#Test').css('width') ? On Jan 26, 11:46 am, Kevin Dalman wrote: > jQuery has innerHeight/Width and outerHeight/Width methods, but is > there a method that can return a 'CSS Height/Width'. A CSS width is > the width that would be applied via CSS to achieve a given 'outer > width'. This value w

[jQuery] accordion plugin in ie7 does not fully collapse

2009-01-26 Thread c.s
I'm using the accordion plugin to achieve as a wizard for a multi-part form. in ie7, the li don't fully collapse so the form does not fix all the way to the top. it does not happen in firefox. does anyone know of a way to fix this issue? i thought the most recent version of the accordion take car

[jQuery] disable submit not working in IE7

2009-01-26 Thread GBartels
I'm using JQuery 1.2.6 with the following script: It works as expected in FF3 but is is slightly

[jQuery] Submit button usage for SimpleModal - what am I missing?

2009-01-26 Thread Codemonkey
Hi, I am using SimpleModal, and would like to fire a modal on the click of an input button. When the function fires, it flashes the modal for a brief moment and then dissapears... can anyone give me a hand? It's pretty basic: Any ideas? Apologies if this is not where to post to...

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread legofish
thanks ricardo, I wish I had seen the link earlier, I spent most of the day trying to implement something similar. My code is very messy though so I won't post it. I know that audio app users like the paradigm you just explained (knob responding to up-down or left-right mouse movement), but I act

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread Eric Garside
I can't actually even get the demo posted to work. When I pull left, I expect the knob to continue moving left, but you have to physically drag up and to the left to move it, which is pretty hard to do. What if the knob was set to work like a slider, where a positive vertical or horizontal movemen

[jQuery] IE Reports 0 children()

2009-01-26 Thread Nicholas
FF works fine, IE however reports 0 children() and I am finding it difficult to solve. Example XML retrieve from $.get: text text text The code: jQuery.get("process.asp", {job:"getLetter", letterID:letterName, type:"xml"}, function(xml){ alert(jQuery(xml).children().lengt

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread Jörn Zaefferer
You probably need to upgrade jQuery as well, the tooltip plugin was released with support for 1.2.6. Jörn On Mon, Jan 26, 2009 at 7:50 PM, CNN_news wrote: > > Thanks, > > I replaced jquery.tooltip.js and jquery.tooltip.css with the new > versions and the tooltips stopped working alltogether. >

[jQuery] Any way to get all attibutes of a node?

2009-01-26 Thread David
Is there any way to use jquery to get an array of all attributes a given node has? I'm writing some code to process a page where the user might have added custom attribute names that I can't know about in advance but need to detect.

[jQuery] jquery 1.2.6 focus problem?

2009-01-26 Thread chris robinson
Hey all, Our project is using 1.2.6, but we seem to have an issue with calling: $('#some-textbox-id').focus(); The element focuses properly, but it seems like the next time you press the tab key the focus completely disappears and you have to hit it several times to get it back into the flow of

[jQuery] Tabbed user interface

2009-01-26 Thread madrid440-goo...@yahoo.co.uk
Hi, I'm trying to build a tabbed user interface based upon the themeroller css and demo.html found in the themeroller zip file. It connects to a database and loads data into the tabs when required. The interface is set-up to provide a customer back-end, so that the customer can update their acco

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread Ricardo Tomasi
Audio editing software has lots of knobs, and they're not hard to use. The thing is you don't turn them with a circular motion, but you click and drag up/down or right/left just like a slider, the rotary control gives you visual feedback while saving a lot of space. This was real fun: http://jsb

[jQuery] Re: Continuing to Seek Rounded Corners on Absolutely Positioned Elements that Work in IE7

2009-01-26 Thread Vik
I just changed the position attribute from relative to absolute on one css rule: .dialog .b { /* bottom */ position:absolute; width:100%; } ...and it seems to be working now in IE7. Here's an updated demo page: http://www.flavorzoom.com/schillmania_tryout_2/temp.html I've just begun testing

[jQuery] [autocomplete] Autocompletion in dynamic inputs

2009-01-26 Thread Xembalo
Hello, i'm using the autocomplete plugin (http://docs.jquery.com/Plugins/ Autocomplete) on my site. On static inputs, it worked fine: HTML: jQuery: $(document).ready(function() { $("#suggest").autocomplete('searchbox', { width: 210, multiple: fals

[jQuery] Re: Can JQuery solve the iframe height=100% problem?

2009-01-26 Thread Kevin Dalman
(Sorry if this is a duplicate post) Hi Dave, This plugin may be more than you need, but... The UI/Layout widget will automatically position and size an iframe (or other element) to fill the entire page, OR allow for a header, footer, or sidebars. The code and markup are dead-simple. Here is an

[jQuery] Re: Can JQuery solve the iframe height=100% problem?

2009-01-26 Thread Kevin Dalman
Hi Dave, This plugin may be more than you need, but... The UI/Layout widget will automatically position and size an iframe (or other element) to fill the entire page, OR allow for a header, footer, or sidebars. The code and markup are dead-simple. Here is an example with a page-banner and an ifr

[jQuery] Can jQuery calculate "CSS Width/Height"

2009-01-26 Thread Kevin Dalman
jQuery has innerHeight/Width and outerHeight/Width methods, but is there a method that can return a 'CSS Height/Width'. A CSS width is the width that would be applied via CSS to achieve a given 'outer width'. This value will differ depending on the box model and other older browser idiosyncracies.

[jQuery] Autocomplete Plug-in: Submit with TAB?

2009-01-26 Thread Perra - Sandstream.se
Hi! New to this list. I have a question about the Autocomplete Plug-in: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ Is it possible to submit the form when the user leaves the result list with the T

[jQuery] Re: .val() problem

2009-01-26 Thread Ricardo Tomasi
I think you have to escape the brackets: $('input:radio[name=field_submcategory\\[value\\]]:checked').val() On Jan 26, 3:37 pm, LoicDuros wrote: > Hi, > > I have a set of radio buttons with name="field_submcategory[value]" I > want to figure out what value has been selected, even after the user

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread legofish
thanks jay for the IE support link, I was just looking for that. Also thanks Eric for the suggestion, I'm going to try the other approach first and if it ends up being too complex I'll give canvas a shot. Jeffrey, I sort of agree with you, but I also think the main reason why knobs are such a UI

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread Jeffrey Kretz
If I could second this from a usability perspective. I've used a flash-based interface that had a rotating knob. Moving that with a mouse was counter-intuitive. Dragging a straight slider (horizontal or vertical) just felt a lot better. JK -Original Message- From: jquery-en@googlegrou

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread Jay Abdal
To add canvas support to IE you can use the following script (slower, but works): http://code.google.com/p/explorercanvas/ On Mon, Jan 26, 2009 at 2:41 PM, Eric Garside wrote: > > Canvas is probably the most elegant way to go, especially given the > type of knobs you want. My suggestion is to

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread Eric Garside
Canvas is probably the most elegant way to go, especially given the type of knobs you want. My suggestion is to find a decent resolution image of the knob you want, then use jquery and canvas to move the knob, and just keep track of the position. Be aware though, the mouse isn't really well desig

[jQuery] Re: Continuing to Seek Rounded Corners on Absolutely Positioned Elements that Work in IE7

2009-01-26 Thread Jay Abdal
could this be why?: "Note that if gradients are used, you will need a "min-height" (or fixed height) rule on the body of the dialog. If these examples appear *funny at the bottom*, it is because they do not enforce the min-height rule." On Mon, Jan 26, 2009 at 12:33 PM, Vik wrote: > > The latest

[jQuery] Re: Recursion issue with nested lists.

2009-01-26 Thread Nicholas
Beautiful! Works like a charm! Thanks again! On Jan 26, 8:20 am, Nicholas wrote: > Thanks Rob & Karl. > > Karl, excellent plugin! I think this is exactly what I need to get > around the default text() function. > > Thanks a million! > Nick > > On Jan 24, 5:35 am, Karl Swedberg wrote: > > > Oh,

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread legofish
by the way by "this approach" I meant the second example on that page. On Jan 26, 1:54 pm, legofish wrote: > James, yes I mean a rotary control. > Eric, here's a real-world example of what I'm trying to implement: > > http://www.niji.or.jp/home/k-nisi/sa-9900-h.jpg > > I'm looking for control kn

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread legofish
James, yes I mean a rotary control. Eric, here's a real-world example of what I'm trying to implement: http://www.niji.or.jp/home/k-nisi/sa-9900-h.jpg I'm looking for control knobs such as those found on a stereo; both continuous ones such as a volume knob, and "n-step" knobs such as the "funct

[jQuery] Re: tooltip - image preview does not respect window border

2009-01-26 Thread CNN_news
Thanks, I replaced jquery.tooltip.js and jquery.tooltip.css with the new versions and the tooltips stopped working alltogether. In my wordpress theme folder I have a jquery directory. In this directory I have the following files: global.js jquery.js jquery.tabs.css jquery.tabs.pack.js jquery.ta

[jQuery] Re: cluetip with an dynamic aspx content

2009-01-26 Thread chrs
hi karl, it is a parse error. the class, where the site is deduced, can't be loaded. (or something like this...) --- christian

[jQuery] Re: jquery not working at all after upgrade to 1.3.1

2009-01-26 Thread Mike Alsup
> Yes, and on top of that I put an alert in the jquery-1.3.1.js to see > if it was finding the file correctly and it is, I got the alert before > the page loaded. > > On Jan 23, 8:20 pm, Mike Alsup wrote: How about creating a small test page and posting a link to it?

[jQuery] .val() problem

2009-01-26 Thread LoicDuros
Hi, I have a set of radio buttons with name="field_submcategory[value]" I want to figure out what value has been selected, even after the user hits refresh (so .change won't work). I've tried this but the alert I get is always undefined, independently from what button is checked: alert($('input:r

[jQuery] Continuing to Seek Rounded Corners on Absolutely Positioned Elements that Work in IE7

2009-01-26 Thread Vik
The latest approach I'm trying uses a more old-school technique, described here: http://www.schillmania.com/content/projects/even-more-rounded-corners/ For most uses, it works very well. But for absolutely positioned objects, one of the divs seems to disappear in IE7. Here's a demo using it with

[jQuery] Re: Text Manipulation

2009-01-26 Thread whtthehecker
This works great! Thanks a lot for the help Jay! On Jan 23, 7:08 pm, jay wrote: > Something like this should work: > > str = $(textinput).val(); > $(textinput).val(  str.substr(0,str.indexOf("@"))  ); > > On Jan 23, 7:51 pm, whtthehecker wrote: > > > Hi, > > > I'm trying to create a sign up for

[jQuery] Re: showing animated gif when redirecting to new a page

2009-01-26 Thread Andy Matthews
You could set an amimated GIF as a background image for the page. Then, as page content loads in, it'll overlap the animation and you wouldn't see it any more. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of misskittyt Sent: Monday, Ja

[jQuery] Re: Which Jquery Plugin can do that

2009-01-26 Thread Lionel Martelly
Thank you. I found this, and that might help http://www.ryancramer.com/projects/asmselect/examples/example2.html -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of jQuery Lover Sent: Monday, January 26, 2009 2:53 AM To: jquery-en@googlegro

[jQuery] Re: Closing the modal pop up programmatically

2009-01-26 Thread Eric Martin
$.modal.close(); will do the trick ;) On Jan 25, 8:39 pm, TFrank wrote: > Hi all. I see the obvious "simplemodal-close" class, which by default > will close the modal object. > However, the problem I am having is that the modal div's html is being > populated by an ajax call for a remote page. T

[jQuery] Re: showing animated gif when redirecting to new a page

2009-01-26 Thread misskittyt
bump On Jan 22, 1:07 am, misskittyt wrote: > Hi all, > I'm having trouble showing an animated gif (to indicate that the page > is loading) when redirecting to a new page.  There are several tabs a > user can choose, each taking them to a different page in the site.  I > think this almost works,

[jQuery] Re: How to get the value of List and concatenate with JQUERY

2009-01-26 Thread Manowar721
This line above $("ul#developerul > li").addClass("getValues"); does nothing. It was part of another way I was going to suggest, then forgot to erase it. Sorry for the confusion. ,Manowar721 On Jan 26, 8:59 am, Manowar721 wrote: > As long as, I am understanding what you are trying to do.

[jQuery] Re: How to get the value of List and concatenate with JQUERY

2009-01-26 Thread Eric Garside
If I understand correctly, given the list you've shown, you want an alert of the value of the you just clicked, yes? If so: $(function(){ $('#developerul > li').click(function(){ var value = $(this).attr('value'); alert(value); // Or do whatever you wanted to do with javascript he

[jQuery] Re: Hover Effect on 2 rows

2009-01-26 Thread kevind
Update on this project i've opted to roll up to 1 row as end users of this private app. have more screen space horizontally that i can work with. however, the script below doesn't appear to work in Firefox - it works fine in IE 6, Chrome what's up with that ? my on-page style is tr.hover td

[jQuery] Re: Hover Effect on 2 rows

2009-01-26 Thread kevind
thanks - i've opted to roll things up to 1 row anyway - however, i'll keep the link for these 2 row scripts as they seem to work. On Jan 26, 10:04 am, Ricardo Tomasi wrote: > That's quite simple. Just adjust your CSS so that the rows 'blend > together', set cursor: pointer in your CSS, and use t

[jQuery] Re: Recursion issue with nested lists.

2009-01-26 Thread Nicholas
Thanks Rob & Karl. Karl, excellent plugin! I think this is exactly what I need to get around the default text() function. Thanks a million! Nick On Jan 24, 5:35 am, Karl Swedberg wrote: > Oh, rats. Sorry about that, Rob. On both counts.  Yeah, meant to reply   > to the OP. And I inadvertently

[jQuery] Re: How to get the value of List and concatenate with JQUERY

2009-01-26 Thread Manowar721
As long as, I am understanding what you are trying to do...this should work. $(document).ready(function(){ var values = new Array(); $("ul#developerul > li").addClass("getValues"); for (x=0;x<=3;x++){ values[x] = $("ul#developerul > li").eq(x).attr("value"

[jQuery] Re: Problem with Jcarousel and Safari: next button disabled

2009-01-26 Thread charlie.schams
I ran into a similar problem with jcarousel and Safari. I was creating new carousels after the page had initialized, and the default prev/ next buttons were always disabled. I tracked it down to a browser snoop at line 186: if ($.browser.safari) { this.buttons(false, false); $(window).b

[jQuery] Re: How do I get the actual HREF of a link?

2009-01-26 Thread Karl Swedberg
My point exactly. --Karl On Jan 26, 2009, at 10:10 AM, seangates wrote: I've used this a hundred times: $('#testlink').attr('href'); Don't make jQuery more complicated than it has to be. -- Sean On Jan 26, 7:32 am, Karl Swedberg wrote: On Jan 26, 2009, at 12:56 AM, jQuery Lover wrote:

[jQuery] Re: cluetip with an dynamic aspx content

2009-01-26 Thread Karl Swedberg
Hi there, That message occurs when there is an ajax error. Can you use Firebug to see what error is being returned? --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 26, 2009, at 10:08 AM, chrs wrote: hi! i have a problem with ajax-loaded contents w

[jQuery] Re: this (class) + id + text

2009-01-26 Thread Crazy-Achmet
Amazing, worked like a charme! ;) Thanks On 26 Jan., 16:42, Eric Garside wrote: > Ugh, sorry. Mondays. ;_; > > The correct code should be: > $('.show_img').hover( >      function(){ >         $($(this).attr('href')).show() >      }, >      function(){ >         $($(this).attr('href')).hide(

[jQuery] Re: this (class) + id + text

2009-01-26 Thread Eric Garside
Ugh, sorry. Mondays. ;_; The correct code should be: $('.show_img').hover( function(){ $($(this).attr('href')).show() }, function(){ $($(this).attr('href')).hide() } ); On Jan 26, 10:33 am, Eric Garside wrote: > Lets assume you have the following html: > >

[jQuery] cluetip with an dynamic aspx content

2009-01-26 Thread chrs
hi! i have a problem with ajax-loaded contents with the cluetip-plugin... the loading of a .html-file works, but i want to load a .aspx-file – and this is my problem. there is always the message "sorry, the contents could not be loaded". anybody knows this problem?

[jQuery] Re: How do I get the actual HREF of a link?

2009-01-26 Thread seangates
I've used this a hundred times: $('#testlink').attr('href'); Don't make jQuery more complicated than it has to be. -- Sean On Jan 26, 7:32 am, Karl Swedberg wrote: > On Jan 26, 2009, at 12:56 AM, jQuery Lover wrote: > > > > > You can also try this: > > > $('#testlink')[0].getAttribute('href')

[jQuery] Re: this (class) + id + text

2009-01-26 Thread Eric Garside
Lets assume you have the following html: Show Image Show Image Show Image Then the code you want is: $('.show_img').hover( function(){ $(this.href).show() }, function(){ $(this.href).hide() } ); this.href contains the jQuery selector you want to make visible, and co

[jQuery] Re: Suggester under browser's one

2009-01-26 Thread Eric Garside
That, or you could just use a rotating name for the field. I'm pretty sure that would fix the problem as well, as I think form memory is based off input name/id? I could be way off the mark, but naming the field like: 'salt_' + new Date().valueOf(); should stop autocomplete from working on it. On

[jQuery] this (class) + id + text

2009-01-26 Thread Crazy-Achmet
Hey, sorry for the weird topic but i couldn't find a better one so i choose this! ;) Right now, i got this code: $('.show_image').hover( function(){ $('.image').show(); }, fun

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread Eric Garside
Legofish, I've got a couple ideas which might get the job done, but they all depend on what "style" of knob you want. Take a look around a google image search, and see if you can find a good representation of the type of knob you want. Then we can go from there. :) On Jan 26, 10:03 am, "James Hu

[jQuery] Re: Form Validation

2009-01-26 Thread issya
I just tested this code on IE 6/7 and it does not work. I am using a thickbox ajax call to load this form into a lightbox. The forms loads just fine. If you don't fill anything out and submit the form, it will let it go through. It also seems to refresh the entire page which it shouldn't. Everythi

[jQuery] Re: Seeking div hide/show plugin with access by URL

2009-01-26 Thread Ricardo Tomasi
Try http://stilbuero.de/jquery/tabs/ or the Tabs funcionality in jQuery UI. Or venture into the docs/jQuery API (http://docs.jquery.com, http://api.jquery.com) and you should be able to accomplish all this by yourself in a few days. - ricardo On Jan 26, 11:08 am, Jonny Stephens wrote: > I'm l

[jQuery] Re: Hover Effect on 2 rows

2009-01-26 Thread Ricardo Tomasi
That's quite simple. Just adjust your CSS so that the rows 'blend together', set cursor: pointer in your CSS, and use this: $('.Row:even').each(function(){ var t = $(this), link = t.find('a')[0].href; t.add( t.next('.Row') ).click(function(){ window.location = link; }); }); use :od

[jQuery] Re: Implementing a Knob Control

2009-01-26 Thread James Hughes
Do you mean a gague control? IE some sort of rotary control vs a slider? From: jquery-en@googlegroups.com on behalf of legofish Sent: Mon 26/01/2009 14:49 To: jQuery (English) Subject: [jQuery] Implementing a Knob Control Hi, I need to implement a knob con

[jQuery] Re: SlideViewer

2009-01-26 Thread Chris J. Lee
Just use the coda plugin. http://www.ndoherty.com/demos/coda-slider/1.1.1/ Coda is actually based on slideviewer if you look at the source. On Jan 26, 3:40 am, Travis wrote: > Hi, all > > I'm using SlideViewer plugin. > > is it possible to have autoplay for the gallery with play, pause , > next

[jQuery] Re: Can JQuery solve the iframe height=100% problem?

2009-01-26 Thread laredotorn...@zipmail.com
My iframe is also hard-coded. But here is what I get when I do console.log statements ... $('#fileTreeIframe').load( function() { var $ifbody = $(this).contents().find ( 'body' ); console.log($ifbody); // Outputs Object

[jQuery] Implementing a Knob Control

2009-01-26 Thread legofish
Hi, I need to implement a knob control for one of my projects (eg. a volume knob). Ideally I would like to use jquery. I have spent some time searching for any resources to get started. Not only I can't find anything in jquery, I can't find anything even resembling a knob implementation in javascr

[jQuery] Re: Working with Arrays

2009-01-26 Thread Karl Swedberg
Hi Stefan, You could use the core JavaScript .splice() method: https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Array/splice --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 26, 2009, at 9:20 AM, Stefan Sturm wrote: Hello,

[jQuery] Re: jquery not working at all after upgrade to 1.3.1

2009-01-26 Thread Jay
Yes, and on top of that I put an alert in the jquery-1.3.1.js to see if it was finding the file correctly and it is, I got the alert before the page loaded. On Jan 23, 8:20 pm, Mike Alsup wrote: > > This is the same error I get when I was building the app and the id, > > gid3 in this case, did

[jQuery] Re: how tu use jQuery.getJSON in synchronous mode

2009-01-26 Thread Olivier
OK for success; just an transcription error; the problem is not here. On Jan 25, 9:23 pm, Ariel Flesler wrote: > It's success not succcess. > > -- > Ariel Fleslerhttp://flesler.blogspot.com > > On Jan 25, 2:36 pm, Olivier wrote: > > > I try to use jQuery.ajax with dataType : 'json' : > > > jQue

[jQuery] Working with Arrays

2009-01-26 Thread Stefan Sturm
Hello, I use some jQUery functions, to work with Array. But now I'm missing a function. How can I remove an item from an Array? Lets say, I have this Array: var a=[ 1,2,3,4,5,6]; And now I want to remove item 3. How can I do this? Thanks for your Help, Stefan Sturm

[jQuery] Re: Hover Effect on 2 rows

2009-01-26 Thread kevind
followup question..now that i have nice hover working, i'd like to set the TR to be a link to a page, instead of the content i have now: == Details == I'd like to get rid of the extra column and the link and make the 2 neighboring rows the link with the browser showing a '

[jQuery] Re: Hover Effect on 2 rows

2009-01-26 Thread kevind
This one did the trick - thanks ! On Jan 26, 5:29 am, jQuery Lover wrote: > Hi Kevin, > > NO, you can not wrap your tr's with div's or span's. > > Unfortunately Olaf's script will not work also. > > A little ugly script should do the job: > > $(function(){ >         $('.Row').hover(function(){ >

[jQuery] Re: Suggester under browser's one

2009-01-26 Thread ilmarik
It works, but... https://developer.mozilla.org/en/How_to_Turn_Off_Form_Autocompletion#Original_Document_Information Thanks for help

  1   2   >