[jQuery] Multiple Cascading Shows with jQuery Cycle

2010-02-08 Thread Robert Kilroy
Greetings, What I'm trying to accomplish is a 'cascade' effect. I have 3 shows setup. I'd like for the 'after' callback to fire the 'next' slide on the next show... something like this: $('#show1').cycle({ fx: 'fade', timeout: 0, after: show1After }); function show1After() { $('#show2').

[jQuery] Can JQuery tabs be used to intergrate different apps under 1 UI?

2010-01-28 Thread K Robert
I am lookng for a seamless solution to integrate 3-4 applications under 1 UI. Can JQuery support this? If so, are the any issues with navigation within the tabs as associated to the specific application? -- View this message in context: http://old.nabble.com/Can-JQuery-tabs-be-used-to-intergra

[jQuery] Re: detecting edge cases when swapping divs

2009-12-14 Thread robert...@gmail.com
Abbey - Here you go - this works for me in IE http://www.greenearthcrew.com/jquery/moverows.htm On Dec 14, 5:43 pm, Abbey wrote: > @Robert The code didn't work for me. > > @Charlie I tried length=0 and length=1 and the pane always goes past > the footer div. > > $(&q

[jQuery] Re: detecting edge cases when swapping divs

2009-12-13 Thread robert...@gmail.com
I am trying to learn Jquery and tried to tackle this one. I figured you must identify id and class, then rename each after a movement. This seems to work ok - but I am sure there is a more elegent way to do it. http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en"> moving boxes experiment 1.

[jQuery] Re: Problem traversing up list

2009-11-27 Thread Vincent Robert
$('#item1-1').parent().closest('li').attr('id') will be faster because it won't retrieve the full list of parents On 27 nov, 13:20, Michel Belleville wrote: > Well, that must mean that the parent has no id, which is exactly the case : > > >     Item 1 <= $('#item1-1').parent().parent() >      

Re: [jQuery] Re: Functions

2009-11-19 Thread Vincent Robert
What you are looking for is "event delegation". In your last version, you are attaching a "click" event handler to every you add to your table. It can be time and resource consuming. A better way is to bind the "click" event to the container where you will load your dynamic content and wait for

[jQuery] Same input, different data sources

2009-10-20 Thread robert
I have the following situation: I'm trying to make the autocomplete work for an input that will store 3 different variables (ex. sum, currency and period) separated by comma. The autocomplete will work for the last two, wich will be retrieved from 2 different urls. Currently, I tryied to bind on

jquery-en@googlegroups.com

2009-10-19 Thread robert...@gmail.com
I am hoping someone can guide me in the right direction. I need a script or function that will capture the X & Y position of the mouse click and set it in a variabvle that I will store in DB. Caveat - I need it to be X&Y position relative to the top left position of a image *(floor plan map)...so

[jQuery] Re: Split Form field into array

2009-10-08 Thread robert...@gmail.com
Thanks again to James Figured this easy one out myself: just changed: for (var i in rows) { var parts = rows[i].split(' '); partNum[i] = escape( parts[0] ); qty[i] = escape( parts[1] ); if(qty[i]=="undefined"|qty[i]==""){qty[i]= 1};

[jQuery] Re: Split Form field into array

2009-10-08 Thread robert...@gmail.com
url = 'mypage.asp?Partnum='+partNum.join(',')+'&Qty='+qty.join(','); alert(url); }); On Oct 7, 4:06 pm, James wrote: > I've set up a sample page on JS Bin:http://jsbin.com/oqeco > > Check the source for the code. > > On Oct 7,

[jQuery] Re: Split Form field into array

2009-10-07 Thread robert...@gmail.com
l(); > Use the split() function to split each line by "\n" (return). > Then for each of those lines, split it again by " " (space). > (Store all of these in an array(s).) > Then you can use the join() function to add "," (comma) to a list in > your arr

[jQuery] Split Form field into array

2009-10-06 Thread robert...@gmail.com
I really hope someone can assist: I am trying to take a form field: The user will put in part numbers , space, qty, carraige return ,then another entry on the next lineit will look like this: bd 2 bd1200 5 I want to split this into two querystring variables before submitting to next

[jQuery] Re: XHTML or HTML when creating elements?

2009-09-25 Thread Vincent Robert
Actually, jQuery does some parsing by itself first. The $('') syntax is actually a shortcut to document.createElement("span"), and yes, the "/" is required here. So $ ('') will be faster than $('') which will have to go through innerHtml. Regards, On Sep 24, 6:33 pm, Bertilo Wennergren wrote:

[jQuery] Re: Joining values in ajax load

2009-09-02 Thread robert...@gmail.com
Resolved...The issue was the recordset query ...the Jquery code was ok afterall. My lesson learned is to find a better way to test errors ... Thx On Sep 2, 9:26 am, "robert...@gmail.com" wrote: > I was trying to simplify my question and consequently may have not > asked it cor

[jQuery] Re: Joining values in ajax load

2009-09-02 Thread robert...@gmail.com
7;'''''''''''''''''' $(document).ready(function() { $('.mybutton').click(function(event) { var request=$(this).attr('id'); $("#showtime2"+request).load("Test.as

[jQuery] Joining values in ajax load

2009-09-01 Thread robert...@gmail.com
Newbie here - Whenever I try to join variables I get results for first item (CustNum) only...PartNum returns as 'undefined'. Can someone tell me the problem with this code: $(document).ready(function() { $(".mybutton").click(function(event) { $("#myDiv").load("Test.asp?CustNum="+ $('#CustNum').v

[jQuery] Re: jqModal +r14 updated

2009-08-31 Thread Robert Wagner
#x27;#jqModal').jqmShow(this); return false; }); eek. return false is a must, why does nobody mentions? live works the same way. just use live() instead of bind() 1/ jqmShow(this) 2/ return false; cheers, robert

[jQuery] Validate: Position of error messages using xVal and jquery with the validate plugin

2009-08-27 Thread Robert
I have an MVC application that is using xVal and jquery with the validate plugin. I am trying to get the error message span's that appear to display under the associated form elements., right now they display to the right. I noticed that this seems to be possible with jquery validate since i see i

[jQuery] Cannot get columns with rowspan to not be included in sorting (Tablesorter 2.0)

2009-08-21 Thread Robert H.
90 88 100 90 Student03 Languages female 85 95 80 85 $(document).ready(function() { $("#rowspan").tablesorter(); }); Thank you for your time, Robert

[jQuery] jQuery.sheet v0.5, any thoughts, jQuery praise

2009-08-04 Thread Robert
now I just use the jQuery.support.boxModel for correction (my fn = jS.attH.boxModelCorrection()) and I'm set. Good going gang Robert

[jQuery] Help with jquery Navbar rollovers.

2009-07-30 Thread Robert
Hi I have been trying to find an answer to this question. I am trying to create a nav bar using jquery that uses rollovers. So there is an On state, off state, clicked state for three different tabs/images. example: Home | Support | About The problem I’m having is getting the clicked/on state to

[jQuery] Re: help w/ plugin

2009-07-16 Thread Robert
Thanks, I wasn't aware. It seems like it would be good to expand this script, especially to allow for different targets. That is, unless there is already a way to do that. I'll look into it. On Jul 16, 7:11 am, Charlie wrote: > not sure if you are aware of this but their is a "switchClass" scrip

[jQuery] Star Rating

2009-06-17 Thread Robert Ladd
By: <%= Html.Encode(review.Reviewer.FullName) %> <%= Html.ActionLink(Html.Encode(review.Title), "Details", new { id = review.ReviewId, eId = Model.Entity.EntityId }) %> <% } %> Thanks in advance for any help. Robert Ladd

[jQuery] Cluetip with Image Maps

2009-06-17 Thread Robert
are triggering the Sticky clueTip? I've tried everything from hacking the CSS to stripTitle with a " ". Thanks in advance. Robert

[jQuery] Set value in Parent

2009-06-11 Thread robert...@gmail.com
Hello, I have a page in an Iframe and when the user clicks a image (href), I want a value to be set in the parent page. I don't know why this is not working...please assist. In the iframe page , dollar1 is the id of the Imagebutton, then I have a hidden variable id= setEndUser. On the parent pa

[jQuery] Re: can someone translate this syntax ?

2009-06-05 Thread Vincent Robert
options = $.extend({ ... }, options) is a popular construct in plugins. It allows to define default values for a options hash that is passed as the only parameter. On Jun 5, 4:22 am, runrunforest wrote: > thank you, I don't see that in other plugin, acutually so far i've not > yet see the same

[jQuery] ui sortable - cancel action if list is too long

2009-06-05 Thread Robert Bobrowski
e'+new_id).sortable("cancel"); causes error. Script allows to move single elements and whole lists. I want to be able move elements from all lists but disable drop if it's too long. -- Regards, Robert

[jQuery] ui sortable - cancel action if list is too long

2009-06-05 Thread Robert Bobrowski
e'+new_id).sortable("cancel"); causes error. Script allows to move single elements and whole lists. I want to be able move elements from all lists but disable drop if it's too long. -- Regards, Robert

[jQuery] Re: A better way of writing this code?

2009-05-15 Thread Vincent Robert
On May 15, 3:24 pm, "ryan.j" wrote: > as rob said, unless the OP is using the anchor's class itself in > conjunction with some other jquery selector at that point, the OP > would be better off just using :hover. > > jquery is awesome, but using it to do stuff CSS already does better is > conside

[jQuery] jQuery Logo

2009-05-12 Thread Robert MacLean
Hi, I am looking for a high res copy of the jQuery logo, ideally with a transparent background for use in a presentation I am giving on it. I can find the old logo like that, but not the new one.

[jQuery] Implementing Uploadify in a CakePHP project

2009-04-02 Thread Robert McWay
I am trying to implement the Uploadify jQuery plugin...but am having trouble calling the upload script specified in the "script" parameter...This is due to the fact that i am using CakePHP, and the "Pretty URLs" are breaking it. After some research through this forum, i came across a post where so

[jQuery] Re: Wouldn't inArray() be more intuitive if called arrayPosition()?

2009-03-24 Thread Vincent Robert
Or the name could be changed for jQuery 1.4 and a plugin provided for the compatibility with 1.3 code. It has been the jQuery policy for some time now. On Mar 24, 5:25 pm, Eric Garside wrote: > Yea, the backwards compatibility is really the major issue with making > a basically cosmetic change.

[jQuery] Help! Problem with using show/hide with divs

2009-03-19 Thread Robert Hill
Hello, I'm trying to create a script that would allow me to display a div element when the user's mouse entered a specific div, and then have that div close when you existed that specific div There would be about boxes in all . My current problem is that the #showbox closes as soon as the mous

[jQuery] Re: Is there anyway to grab the Children of an Element?

2009-03-19 Thread Vincent Robert
In your livequery callback, this is the DOM object that received the event so your "th.name". $(this) builds a jQuery around this DOM element, a jQuery around your "th.name". $(this).children("th.name") returns a jQuery containing the children of "th.name" that are "th" elements and have a class

[jQuery] Re: Checkboxes enabled/disable button

2009-02-18 Thread Robert Rawlins
Thanks for the heads up on that, I've obviously picked that up as a bad habbit from some examples built on older versions, I'll be sure to get rid of it! :-) Thanks Robert -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Mor

[jQuery] Re: Checkboxes enabled/disable button

2009-02-18 Thread Robert Rawlins
Morningz, Thank you for this! I made a couple of small changes, like so: if ($("inp...@name='my_checkbox']:checked").length == 0) { and it worked a real treat!! Thank you for your advice, I appreciate it! Robert -Original Message- From: jquery-en@googlegroup

[jQuery] Re: multiple submit sends with CSS Button

2009-01-22 Thread Robert
any idea?

[jQuery] Re: multiple submit sends with CSS Button

2009-01-21 Thread Robert
ah ok, I've found it in application.js I didn't code it for my own, I only have to integrate this function and CSS into this project. My main work is to do the php and html code + sql. Here is the function. (The alert doesn't show up by the way) function trigger_form_submit(ref, button_type) {

[jQuery] Re: multiple submit sends with CSS Button

2009-01-21 Thread Robert
A normal form with login and password. I included jquery in my functions file, so its everywhere included. jquery should handle the trigger? I don't use jquery and CSS normally. But I have to include the CSS and the trigger doesn't submit without jquery. Here is the whole code of the form,

[jQuery] multiple submit sends with CSS Button

2009-01-21 Thread Robert
hm, my first request isn't shown online. Here is my question again: Hi, i have a Problem with a CSS-Button. Evertime when I click the Button, the formular will be send three times. A normal input submit button does the same task exactly one time. Here is my Code for this Button (only the first

[jQuery] multiple submit sends with CSS Button

2009-01-21 Thread Robert
Hi, i have a Problem with a CSS-Button. Evertime when I click the Button, the formular will be send three times. A normal input submit button does the same task exactly one time. Here is my Code for this Button (only the first button is important, Abort Button works fine at it is). jqeury 1.2.6

[jQuery] Re: Select links that end in .png, .jpg or .gif

2009-01-18 Thread Vincent Robert
If you want to be able to easily change the extension list, I suggest refactoring the whole thing : function getLinkExtensionsSelector(extensions) { return jQuery.map(extensions, function(ext){ return 'a[href$=.'+ext +']'; }).join(','); } var $links = jQuery('.post').find(getLinkExtensionsSe

[jQuery] Re: My toggleClass is not working.

2009-01-07 Thread Vincent Robert
toggleClass() takes a class name as argument, not a selector. $(document).ready(function() { $("a").filter("#click").click(function(){ $("div .six").toggleClass("two"); }).end() }); On Jan 6, 10:20 pm, amuhlou wrote: > In your script it appears that you are try

[jQuery] Re: Refactoring problem with jquery-selectors

2008-12-29 Thread Vincent Robert
If you just want to use your function without changing the signature, you have to pass along the current this when calling your function. This is done using the call function JavaScript provides for functions. function addClickHandler(tableId, functionName, myUrl) { jQuery('#' + tableId

[jQuery] Re: What am I doing wrong here -- htmlTo?

2008-12-18 Thread Vincent Robert
What you want in full jQuery is: $("#foo").empty().append(''); which is the exact equivalent of $("#foo").html(''); // html() does call this.empty().append() It is very different from the browser innerHtml since your HTML will first be parsed by jQuery into a DOM tree while innerHtml just inse

[jQuery] Re: Expanding div over an image on mouse-over

2008-12-05 Thread Robert K
Wow, you rock!! :) Looks great. Only problem, it doesn't seem to work in IE 7, any ideas? Cheers, Rob On Dec 4, 10:44 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > One way to do it: > > http://jsbin.com/owamu/ > > (yeah I went crazy on the math :D) > > - ricar

[jQuery] Re: Expanding div over an image on mouse-over

2008-12-04 Thread Robert K
*cough* bump! :) On Dec 3, 1:43 pm, Robert K <[EMAIL PROTECTED]> wrote: > I want to add a description/info to some images, I came across this > really cool effect that I think is created usingMooTools, just > wondering if it is possible to replicate in jQuery? > > Half wa

[jQuery] Expanding div over an image on mouse-over

2008-12-03 Thread Robert K
I want to add a description/info to some images, I came across this really cool effect that I think is created using MooTools, just wondering if it is possible to replicate in jQuery? Half way down the page (http://www.irishtimes.com/ ), 5 images with a black text box, put mouse over an image, te

[jQuery] [Tooltip]

2008-11-28 Thread Robert Heine
u/balloons.html In this example the tooltip hides, when the mouse does not enter the tooltip and leaves the object, or when the mouse enters the tooltip and leaves it again. Would it be possible to achieve this with another option-parameter "hoverable: true|false" ? MfG, Robert www.deltatech-v2.de

[jQuery] Re: closing tag bug in jQuery 1.2.6?

2008-10-29 Thread Robert Koberg
hehe. It's easy once you get to know the intrincacies between CSS and XHTML. LOL! Maybe someday. in your code I see two problems: 1. style="float:right; color=green;" that causes a parsing error, should be style="float:right,color:green" Sorry, typo. You were right, ricardo is wrong. Th

[jQuery] Re: closing tag bug in jQuery 1.2.6?

2008-10-29 Thread Robert Koberg
On Oct 29, 2008, at 1:39 PM, Jay wrote: On Oct 29, 12:28 pm, ricardobeat <[EMAIL PROTECTED]> wrote: hehe. It's easy once you get to know the intrincacies between CSS and XHTML. LOL! Maybe someday. in your code I see two problems: 1. style="float:right; color=green;" that causes a pa

[jQuery] Re: closing tag bug in jQuery 1.2.6?

2008-10-29 Thread Robert Koberg
Care to share a link to what you use for xhtml validation? I use my editor, but if you don't have a validating editor, you could use: http://validator.w3.org/

[jQuery] Re: closing tag bug in jQuery 1.2.6?

2008-10-29 Thread Robert Koberg
On Oct 29, 2008, at 12:10 PM, Jay wrote: On Oct 29, 11:08 am, "chris thatcher" <[EMAIL PROTECTED]> wrote: Hey Jay, I remember having some confusion about the span tag at some point. the html specs do significantly limit the types of tags that can be used inside it and browsers will do une

[jQuery] on the jQuery XSL plugin: xslt.js

2008-10-24 Thread Robert Koberg
Hi, On http://johannburkard.de/software/xsltjs/ -- very nice and useful! I was just looking at the source of this and want to offer a few suggestions: * ability to 'get' the compiled XSL so you can store in some cache for reuse without going through the download/parse again. The most ex

[jQuery] Re: Embedding HTML inside of XML, and writing it to a page

2008-10-24 Thread Robert Koberg
m looking it up right now, but I'm a bit unclear as to where to go from the point where I apply the XSLT to the XML. I mean, is this just automatically going to 'work'? On Oct 24, 7:19 am, Robert Koberg <[EMAIL PROTECTED]> wrote: On Oct 23, 2008, at 11:09 PM, Recoil wrote:

[jQuery] Re: Embedding HTML inside of XML, and writing it to a page

2008-10-24 Thread Robert Koberg
ecoil wrote: Hmmm, I haven't used XSL before, I'm looking it up right now, but I'm a bit unclear as to where to go from the point where I apply the XSLT to the XML. I mean, is this just automatically going to 'work'? On Oct 24, 7:19 am, Robert Koberg <[EMAIL PROTECTED]&

[jQuery] Re: Embedding HTML inside of XML, and writing it to a page

2008-10-24 Thread Robert Koberg
On Oct 23, 2008, at 11:09 PM, Recoil wrote: Only thing is, I want the article text to be xhtml-enabled. so there's 's and 's and such in there, and we're looking at something more like This title is rad. And this is some awesome article text. It's HTML formatted thou

[jQuery] Re: xml find element with this attribute value

2008-10-24 Thread Robert Koberg
On Oct 24, 2008, at 2:35 AM, akel wrote: i've been reading a lot and still does not find any solution to my query. please find the details below. in jquery how can i automatically find the element sample with attribute name equals to a without looping entirely the xml jQuery supports

[jQuery] JQuerry Select Box problem

2008-10-17 Thread Robert Djurasaj
at is shown, I want to be able to handpick few countries and put them in Selection Box 3 in which i would be able to move them up or down. Any solutions? Thanks in advance Robert

[jQuery] Re: Problems parsing XML with jQuery

2008-10-17 Thread Robert Koberg
Hi, Do jQuery functions actually work over an XML DOM or just an HTML DOM? best, -Rob On Oct 17, 2008, at 12:32 PM, Richard D. Worth wrote: See http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F - Richard On Fri, Oct 17, 20

[jQuery] Re: XML Parsing Question...

2008-10-15 Thread Robert Koberg
On Oct 15, 2008, at 2:00 AM, KenLG wrote: Because I don't want to deal with the customer service calls generated by the ActiveX objects. Plenty of people working in corporate cubbyholes get their computers locked down so that ActiveX isn't allowed to execute. Not that I really want to worry a

[jQuery] cute JQuery app is live

2008-10-02 Thread Robert Koberg
They talked about it on NBC's Today show this morning: http://pearsonfoundation.org/jumpstart/lookwhosreading/ thanks jQuery and thickbox -Rob

[jQuery] Re: strange resize error with $("body").height()

2008-10-02 Thread Robert Koberg
)); Why is that? -Rob On Oct 2, 2008, at 4:28 PM, Robert Koberg wrote: Hi, I have the following: var winH = $("body").height(); console.log("winH: ", winH); console.log("css height: ", $("body").css("height")); If I resize the brow

[jQuery] strange resize error with $("body").height()

2008-10-02 Thread Robert Koberg
Hi, I have the following: var winH = $("body").height(); console.log("winH: ", winH); console.log("css height: ", $("body").css("height")); If I resize the browser, the values for both remain the same as the time the page was hit by the browser. No matter what resizing I do, the hei

[jQuery] Re: bug: jquery and writing an flv player flash object on windows (vista)

2008-09-24 Thread Robert Koberg
And further FWIW, Actually, I think the thing that made it work on windows was supplying the base param for the object... http://theserver.com/app/"/> There went about 16 hours down the tube... it has been a great conversation. On Sep 24, 2008, at 1:23 PM, Robert Koberg wrote:

[jQuery] Re: bug: jquery and writing an flv player flash object on windows (vista)

2008-09-24 Thread Robert Koberg
-flash-html-generator-library.html -Rob On Sep 24, 2008, at 10:56 AM, Robert Koberg wrote: Hi, Clicking a link and writing an FLV Flash player object: Test function changeFLV() { //$("#playerContainer").html( </pre><tt> document.getElementById("playerContainer&qu

[jQuery] bug: jquery and writing an flv player flash object on windows (vista)

2008-09-24 Thread Robert Koberg
Hi, Clicking a link and writing an FLV Flash player object: Test function changeFLV() { //$("#playerContainer").html( document.getElementById("playerContainer").innerHTML = "data='FLVPlayer_Progressive.swf' height='1' type='application/x- shockwave

[jQuery] Re: flv page turner

Hi, Hopefully this is not too OT. I have a page turner web app that should play a new audio FLV for each new view in Thickbox. It works for me on OS X with FF, Safari and Opera. It does not work for (2) folks on Windows -- with FF the pages turn, but no audio. On Windows IE, the pages don't tur

[jQuery] Re: Unable to select input by value with variable

iwasclicked is a variable wich is way you have to do: $('[EMAIL PROTECTED]"+iwasclicked+"]') skankster napisał(a): > Hello, > > I have a form with lots of radio buttons that all have the same name. > I want to select the one that was clicked by its value. What I am > doing is this: > > > $(docum

[jQuery] Re: Change link dependant on select box.

Morningz, That's exactly what it was, I took out the pound sign and it work perfectly! Thanks mate, I appreciate the help. Robert -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of MorningZ Sent: 04 September 2008 13:18 To: jQuery (En

[jQuery] Re: Change link dependant on select box.

the key:value pair complicated to implement into your above example? I understand the code you've provided but wouldn't really know where to start enhancing it. Thanks for your advice mate, I appreciate it. Robert

[jQuery] Re: Change link dependant on select box.

27;t worry about the key:value pair side of things as I can probably solve that little challenge with some Server Side scripting which will be more robust. If we can get the error resolved the example you've given should give me exactly what I need :-) Thanks, Robert

[jQuery] Change link dependant on select box.

#x27;m learning well but this is a little bit beyond me, especially when you're looking at working with the key/value paris. I appreciate any help you can offer and thanks in advance for your time. Robert

[jQuery] Re: enable/disable to text inputs with checkbox

27;)) { >      $('input:text').val('').attr('disabled', true); >    } else { >      $('input:text').attr('disabled', false);       >    } >  }); > }); Thanks for this, I updated the selectors for #my_input_id and it works an absolute treat! Thank you. Robert

[jQuery] enable/disable to text inputs with checkbox

or them to enter data in. In addition to this, if they enter information into the two fields and then recheck the box, I would like it to clear any values they entered and disable them again. Can anyone offer any pointers or code for this? Many thanks guys, Robert

[jQuery] Re: Cross domain problems

I may be misunderstading something here but this does not look like a cross-domain issue to me. If you are making AJAX request on the same server that served the page, then you should use absolute URI path without any protocol nor domain name : $.get("/some/web/service"). This will work whatever

[jQuery] Re: Running script onLoad instead of ready

If you want code to execute before the page is ready, the you should just inline it in your tag. Note that you won't be able to access or modify any DOM component of the page, all you can do is append some new DOM nodes at the beginning.