[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() {

[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:

[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 i.am.wait...@gmail.com 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. $(.pane

[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. !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://

[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 michel.bellevi...@gmail.com wrote: Well, that must mean that the parent has no id, which is exactly the case : ul     li id=item1Item 1 =

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 a 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 the

[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

[jQuery] Capture Mouse XY

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 XY 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
/html On Oct 7, 4:06 pm, James james.gp@gmail.com wrote: I've set up a sample page on JS Bin:http://jsbin.com/oqeco Check the source for the code. On Oct 7, 2:38 am, robert...@gmail.com robert...@gmail.com wrote: It seems straight forward but I still need some advice. I have this 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}; } On Oct 8, 9:12 am, robert...@gmail.com

[jQuery] Re: Split Form field into array

2009-10-07 Thread robert...@gmail.com
(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 array. On Oct 6, 1:32 pm, robert...@gmail.com robert...@gmail.com wrote: I really hope someone can assist

[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: textarea name=PartNum cols=15 rows=5 id=PartNum value=/ textarea 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

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

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

[jQuery] Re: Joining values in ajax load

2009-09-02 Thread robert...@gmail.com
going to have to provide some HTML of your #CustNum and #PartNum. On Sep 1, 2:54 pm, robert...@gmail.com robert...@gmail.com wrote: 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

[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 robert...@gmail.com wrote: I was trying to simplify my question and consequently may have not asked

[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').val()

[jQuery] Re: jqModal +r14 updated

2009-08-31 Thread Robert Wagner
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

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

2009-08-21 Thread Robert H.
Thank you for your time, Robert

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

2009-08-04 Thread Robert
resizing widths/heights was a nightmare before, 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

[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 charlie...@gmail.com wrote: not sure if you are aware of this but their is a

[jQuery] Cluetip with Image Maps

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

[jQuery] Star Rating

2009-06-17 Thread Robert Ladd
(review.Reviewer.FullName) % /td td valign=top %= Html.ActionLink(Html.Encode(review.Title), Details, new { id = review.ReviewId, eId = Model.Entity.EntityId }) % /td /tr % } % /table Thanks in advance for any help. Robert Ladd

[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

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

2009-06-05 Thread Robert Bobrowski
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
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: 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 craigco...@gmail.com wrote: thank you, I don't see that in other plugin, acutually so far i've not

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

2009-05-15 Thread Vincent Robert
On May 15, 3:24 pm, ryan.j ryan.joyce...@googlemail.com 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

[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

[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 gars...@gmail.com wrote: Yea, the backwards compatibility is really the major issue with making a basically

[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 name, so

[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

[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@googlegroups.com [mailto:jquery

[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 MorningZ Sent

[jQuery] Re: multiple submit sends with CSS Button

2009-01-22 Thread Robert
any idea?

[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

[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

[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] 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: 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] 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 amysch...@gmail.com wrote: In your script it appears that

[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('br/img src=asdf.gifbr/'); which is the exact equivalent of $(#foo).html('br/img src=asdf.gifbr/'); // html() does call this.empty().append() It is very different from the browser innerHtml since your HTML will first be parsed by jQuery

[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) - ricardo On Dec 4, 5:24 pm, Robert K [EMAIL

[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 way down the page (http

[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,

[jQuery] [Tooltip]

2008-11-28 Thread Robert Heine
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
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

[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 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

[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. They

[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. list sample name=a id=1/ sample name=b id=2/ /list in jquery how can i automatically find the element sample with attribute name equals to a

[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 b's and br/'s and such in there, and we're looking at something more like article titleThis title is rad./title text And this is some bawesome/b article

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

2008-10-24 Thread Robert Koberg
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] wrote: On Oct 23, 2008, at 11:09 PM, Recoil wrote: Only thing

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

2008-10-24 Thread Robert Koberg
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: Only thing is, I want the article text

[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

[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,

[jQuery] JQuerry Select Box problem

2008-10-17 Thread Robert Djurasaj
that 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: 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

[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 height

[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: pa href=# onclick=changeFLV()Test/a/p div id=playerContainer /div script type=text/javascript function changeFLV() { //$(#playerContainer).html( document.getElementById(playerContainer).innerHTML = object

[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: pa href=# onclick=changeFLV()Test/a/p div id=playerContainer /div script type=text/javascript function changeFLV() { //$(#playerContainer

[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... param name=base value=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

[jQuery] Re: flv page turner

2008-09-23 Thread Robert Koberg
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

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

2008-09-04 Thread Robert Rawlins
. Is 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.

2008-09-04 Thread Robert Rawlins
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] Re: Change link dependant on select box.

2008-09-04 Thread Robert Rawlins
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 (English

[jQuery] Change link dependant on select box.

2008-09-03 Thread Robert Rawlins
with the key/value paris. I appreciate any help you can offer and thanks in advance for your time. Robert

[jQuery] enable/disable to text inputs with checkbox

2008-09-01 Thread Robert Rawlins
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: enable/disable to text inputs with checkbox

2008-09-01 Thread Robert Rawlins
', 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] Re: Running script onLoad instead of ready

2008-07-10 Thread Vincent Robert
If you want code to execute before the page is ready, the you should just inline it in your script 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. html head script

[jQuery] Re: Cross domain problems

2008-07-10 Thread Vincent Robert
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: using a selector to obtain content from an ajax response

2008-07-07 Thread Vincent Robert
I can't really say from your answer that you actually solved your problem, so here is a way to use the browser parser instead of the jQuery one: $('div/ ').html(responseText).find('response_selector').appendTo('target_selector'); This creates a DIV node without adding it to the document in

[jQuery] inserting class into table element

2008-07-02 Thread Robert Djurasaj
Does anyone know how can i add a class into existing table element using jQuery?? ex:table class=tablesorter

[jQuery] Re: inserting class into table element

2008-07-02 Thread Robert Djurasaj
Hi Richard, I currently have table ...and i would like to change it into table class=tablesorter will this do the trick? robert On Jul 2, 1:13 pm, Richard D. Worth [EMAIL PROTECTED] wrote: $(table.tablesorter).addClass(newclass); - Richard On Wed, Jul 2, 2008 at 12:41 PM, Robert Djurasaj

[jQuery] Re: inserting class into table element

2008-07-02 Thread Robert Djurasaj
curently i have table and i would like to end up with table class=tablesorter ... will this do it?? On Jul 2, 1:13 pm, Richard D. Worth [EMAIL PROTECTED] wrote: $(table.tablesorter).addClass(newclass); - Richard On Wed, Jul 2, 2008 at 12:41 PM, Robert Djurasaj [EMAIL PROTECTED] wrote

[jQuery] getJSON callback bug

2008-07-01 Thread Robert O'Rourke
Hi all, I think there may be a bug with the getJSON callback function. See http://www.sanchothefat.com/dev/jquery/json/ An alert should show and the body should turn blue if it's successful. Using firebug you can see it gets the file. I don't know what's wrong. MIME type maybe? Cheers,

[jQuery] Re: Ensure Textarea has been read.

2008-06-13 Thread Robert Rawlins
Hi Ariel, Thanks for getting back to me. That looks like a neat and tidy piece of code however it isn't working. I don't get any JavaScript errors throw which is a good thing, but is doesn't re-enable the checkbox when I scroll to the bottom. label for=terms

[jQuery] Re: formatting/defining variable values

2008-02-21 Thread Robert Hill
Thanks for looking! I posted the source above. cheers, -robert

[jQuery] Re: formatting/defining variable values

2008-02-21 Thread Robert Hill
Here is the html code: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=Content-Type content=text/html; charset=ISO-8859-1 / titleForm : Carman Research/title link

[jQuery] Re: formatting/defining variable values

2008-02-21 Thread Robert Hill
successfully. HOWEVER, there is another problem: Putting ':checked' means that if the boxes are NOT checked, jQuery won't find them so .val() doesn't exist for the object. Remove the ':checked' and try again. Cheers, Hamish On Feb 21, 11:32 am, Robert Hill [EMAIL PROTECTED] wrote: Hello I'm

[jQuery] Re: formatting/defining variable values

2008-02-21 Thread Robert Hill
for the object. Remove the ':checked' and try again. Cheers, Hamish On Feb 21, 11:32 am, Robert Hill [EMAIL PROTECTED] wrote: Hello I'm collecting a number of values from various form elements: textfield, radio, checkbox. since some of the fields aren't require on my form, when I POST

[jQuery] formatting/defining variable values

2008-02-20 Thread Robert Hill
is submitted, that too would work. thanks in advance! cheers, -robert

[jQuery] Issue with IE and dom injection

2008-01-30 Thread Robert Ernens
is the result of using the ajaxSubmit plug-in function or the ui.tabs remote load as well as ajaxContent plug-in not cde that we have written. Works fine in Opera 9.25 (Win and Mac), Firefox 2.0.0.11 (Win and Mac), Safari 3.0.4 (Mac) but fails on IE 7 Help welcome ! -- Robert Ernens HTCBA Consulting

[jQuery] Re: [TABS plugin RELATED] Look mum, TABS layout only with CSS !!

2008-01-16 Thread Robert O'Rourke
Enrique Meléndez Estrada wrote: Looking at official TABs plugin, I realized that the HTML structure is not very natural. It uses a list (UL) of tab headers follow by tab bodies (DIV). Normally, what you get from your favorite CMS is something more like : a header (div, h,...), its body

[jQuery] Centering Superfish menu?

2008-01-16 Thread Robert Vidrine
that the menu could be centered with nested divs, but I haven't been able to figure out how! If I completely disable Superfish (remove the nav class from the ul), everything is happily centered, but not with Superfish. What am I missing? Thanks, Robert

[jQuery] How to create Terms of Service-type message?

2008-01-14 Thread Robert Vidrine
be looking somehow at form validation, but I'm not sure where to start, nor how to enforce the use of the user agreement on every page... (Maybe a server-side include?) Has anyone implemented such a thing with jquery? Thanks in advance for the help! Robert Vidrine

[jQuery] Re: My First jQuery Plugin..... jQuery.Sheet, a spreadsheet for jQuery

2007-12-19 Thread Robert-CFL
on this though - I have my own plugin posted on my site at a 0.01 version. But I wouldn't dream of posting this to plugins.jquery.com at this time. :) I'm interested to see where your plugin goes. I can see a lot of potential for a spreadsheet like grid. Shawn Robert-CFL wrote: I know there's

[jQuery] Re: My First jQuery Plugin..... jQuery.Sheet, a spreadsheet for jQuery

2007-12-19 Thread Robert-CFL
Here is a link to a running version of the plugin: http://www.weebly.com/uploads/3/1/3/8/313814/jquery.sheet.html On Dec 19, 3:02 pm, Robert-CFL [EMAIL PROTECTED] wrote: Actually, I thank you for the criticism. The reason that I went ahead and posted it was because it is (in reality) past

[jQuery] Superfish problem in FF

2007-12-11 Thread Robert
I have a problem with Superfish in FF2.0. It seems that all list items are set in line. I have not a clue where this is coming from. In IE everything works oke. Does someone know an answer to this problem? see: vinkbouw.whooozwebmedia.nl for the site.

[jQuery] IE and the Funky Overflow

2007-12-10 Thread Robert-CFL
; IE7 still thinks it's visible although you can't see it. What should I do to really HIDE the extra for IE7? Please note, FF works great with it :). rObert

[jQuery] Imagebox Outer Container issue in IE.

2007-11-27 Thread Robert Vidrine
is at the bottom, below all the other content! I'm thinking that IE6 doesn't correctly support fixed positioning, or possibly this has something to do with the fact that it's in an iframe... Anyone got ideas? Thanks in advance, Robert Vidrine

[jQuery] Positioning an element towards the bottom, within limits

2007-11-18 Thread S. Robert James
I'd like to position an element at the bottom of the screen. This is easy, using position: fixed and bottom: ...px. However, on screens higher than 600px, I'd like to fix it at 600px from the top. That is, if the screen is shorter than 600px, push it to the bottom of the screebn otherwise,

[jQuery] Re: photo tagging with jQuery

2007-11-08 Thread Robert O'Rourke
Jared wrote: On Nov 7, 4:27 pm, Bhaarat Sharma [EMAIL PROTECTED] wrote: I am sure most of you are familiar with 'facebook'. you might have noticed that facebook allows ursers to hoover over pictures, click on them and that way tag them. so the next time someone comes to take a look at the

[jQuery] metadata plugin, please help

2007-11-08 Thread Robert O'Rourke
Hello, I'm using the metadata plugin as part of a photo tagging plugin I'm having a go at. I was wondering if it's possible to have multiple metadata sets in one classname eg. class={name:'1'} {name:'2'} would $.metadata({ type: 'class' }).name[0] return 1? are the properties

[jQuery] Re: Scoping selector to parent window

2007-11-07 Thread Robert O'Rourke
cjiang wrote: Hi, What you can do is like the following: $(#i-agree).click(function(){ window.opener.$(#accept-terms).attr(checked,checked); window.close(); }); regards, Changsu Thanks Changsu, sorry about the late response. Works beautifully now. Cheers, Rob

[jQuery] Scoping selector to parent window

2007-11-06 Thread Robert O'Rourke
Hi everyone, I've got a quick question, say I open a new window and in that window i have a button which will close the new window and also check a box in the original window, can this be done with jquery or is it easier to use the regular DOM method? I have this:

[jQuery] Drastically reducing jQuery load time

2007-11-04 Thread S. Robert James
While working on a web app, I thought of this method to drastically reduce jQuery load time. Every link follow causes jQuery to be reloaded again. Now, although the .js file is stored in the local cache, it still needs to be parsed and executed, which takes a lot of time. What if, instead, we

  1   2   >