[jQuery] Cycle Plugin and IE6

2009-12-28 Thread Joseph
Hi, We've been doing a slideshow for the featured content/ads on one of our sites and I'm having problems getting the plugin to work with IE6, I think maybe it's a CSS problem or something, but haven't nailed it yet. Anyone that could give me advice or anything? This is the URL of the slide: http

[jQuery] jQuery.data() works in Mac OS WebKit, but not on iPhone OS?

2009-12-24 Thread Ryan Joseph
I'm playing around with jQTouch for an iPhone OS app that I've been toying with off and on for a while. I wanted to try my hand building it as a web app so I started playing with jQTouch. For reference, here is the page+source (all my code is currently in index.html so you can just "View Source" to

[jQuery] Jquery and general Javascript question.

2009-12-21 Thread Joseph DelCioppio
Guys, I'm not exactly sure where to ask this question so I figure I'd start here. For the record, the website I am referring to can be temporarily found here: http://www.synantus.com:801 I've got an HTML site for my mother's salon that I've been augmenting with jQuery. One of the things I've be

[jQuery] Global Permission Check via AJAX

2009-11-13 Thread Joseph Roberts
I have a rather complicated application that allows a user to interact with a volunteer management system via a user interface that is updated by ajax calls through jQuery. I've encountered a design issue and was hoping jQuery might save me from a redesign. Is there a way to catch every ajax call

[jQuery] Re: Cycle slide #1

2009-08-29 Thread Joseph
An example is available here for those looking the same thing: http://malsup.com/jquery/cycle/fade-in-first.html Just use jQuery UI "scale" effect or any other for that matter.

[jQuery] Cycle slide #1

2009-08-29 Thread Joseph
Hi everyone, This question probably is easy, probably is not :). Is there a way to apply an entry effect to Slideshow? Like the first image in the index make it "zoom" and on page load the first image would appear with "zoom" before everything? Thanks!

[jQuery] Re: Calling ASMX from JQuery

2009-05-18 Thread Joseph Le Brech
doesn't asmx wrap the json in a soap object? > Date: Mon, 18 May 2009 12:51:05 -0700 > Subject: [jQuery] Re: Calling ASMX from JQuery > From: brakes...@gmail.com > To: jquery-en@googlegroups.com > > > Check in Firebug if the service returns data or a 501 error. Its > under CONSOLE. You should

[jQuery] Re: jQuery too slow on IE!!!

2009-05-13 Thread Joseph Le Brech
You will also struggle with css selection if you are using ie6, there are major compatibility issues. I would recommend you just testing your site on ie6 to see if it degrades well on ie6. I wouldn't count on ie6 being able to handle any new features. > Date: Wed, 13 May 2009 03:59:58

[jQuery] Re: Where to find a jQuery Developer?

2009-04-27 Thread Joseph Le Brech
Does it need to be in london? > Date: Mon, 27 Apr 2009 09:27:17 -0700 > Subject: [jQuery] Where to find a jQuery Developer? > From: nmiddlew...@googlemail.com > To: jquery-en@googlegroups.com > > > Hello, > > Does anyone know where I can post a wanted Ad for a London based > jQuery developer

[jQuery] Re: jQuery installed

2009-04-25 Thread Joseph Le Brech
$(document).ready(function(){alert("jquery");}); > Date: Sat, 25 Apr 2009 16:30:08 -0700 > Subject: [jQuery] jQuery installed > From: tcolo...@gmail.com > To: jquery-en@googlegroups.com > > > How I can check that jQuery is installed (worked)? > > Another words check the string src="jquery.j

[jQuery] Re: Infinite Recall Over a Fixed Interval

2009-04-24 Thread Joseph Le Brech
gt; var time = "Local Time: _Hours:_Minutes:_Seconds".replace(/_(\w+)/ > g, function(a,b){ > var d = new Date()['get'+b]() > return d<10 ? '0'+d : d; > }); > self.text( time ); > setTimeout(arguments.callee, 1000)

[jQuery] Re: traversing UL: Request for help

2009-04-24 Thread Joseph Le Brech
why do you need to give it a class programmaticaly? try this: $("ul a").addClass("highlight"); http://docs.jquery.com/Selectors/descendant#ancestordescendant _ Share your photos with Windows Live Photos – Free. http://clk.atdmt.c

[jQuery] Re: creating an animated PNG loader pinwheel (sprite)

2009-04-23 Thread Joseph Le Brech
is this using the css sprites technique? > Date: Thu, 23 Apr 2009 13:14:31 -0700 > Subject: [jQuery] creating an animated PNG loader pinwheel (sprite) > From: adambu...@gmail.com > To: jquery-en@googlegroups.com > > > So I was trying to think of a way to create what was effectively a PNG > anim

[jQuery] Re: Infinite Recall Over a Fixed Interval

2009-04-23 Thread Joseph Le Brech
I often find that sometimes $(this).html will work. > Date: Wed, 22 Apr 2009 19:49:13 -0700 > Subject: [jQuery] Re: Infinite Recall Over a Fixed Interval > From: kiu...@mac.com > To: jquery-en@googlegroups.com > > > On Apr 22, 5:29 pm, James wrote: > > Something like the below? > > > > (functi

[jQuery] Re: Infinite Recall Over a Fixed Interval

2009-04-22 Thread Joseph Le Brech
cant you change your anonymous function for a seperate named function that takes in the html element name funcclock(elem, interval). the fn command can run it once funcclock($(this)); the function can then rerun itself with setTimeout("funcname", interval); > Date: Wed, 22 Apr 2009 16:40:35 -0

[jQuery] Re: Nice lightbox variant?

2009-04-22 Thread Joseph Le Brech
facebox > Date: Wed, 22 Apr 2009 05:10:29 -0700 > Subject: [jQuery] Nice lightbox variant? > From: sne...@gmail.com > To: jquery-en@googlegroups.com > > > hi, > > I want to use a lightbox (clone) for showing forms (like login, > register etc.). > > I looked at Lightbox and Simplemodal. Are t

[jQuery] Re: upload file

2009-04-16 Thread Joseph Le Brech
try ocupload, or one click uploader. > Date: Fri, 17 Apr 2009 08:02:32 +0700 > From: donnykur...@gmail.com > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: upload file > > > ybs@gmail.com wrote: > > I seach a simple way to upload file using ajax and jquery > > > > http://malsup.co

[jQuery] Re: passing more than 1 param via click()?

2009-04-16 Thread Joseph Le Brech
you can also make custom attributes, they don't have to be called "rel" so you can have as many attributes as you want. > Date: Thu, 16 Apr 2009 15:15:44 -0700 > Subject: [jQuery] Re: passing more than 1 param via click()? > From: kgos...@gmail.com > To: jquery-en@googlegroups.com > > > That's

[jQuery] Re: passing more than 1 param via click()?

2009-04-16 Thread Joseph Le Brech
i think itll be covered in this. http://stackoverflow.com/questions/224820/how-do-you-pass-arguments-to-anonymous-functions-in-javascript > Date: Thu, 16 Apr 2009 14:46:41 -0700 > Subject: [jQuery] passing more than 1 param via click()? > From: kgos...@gmail.com > To: jquery-en@googlegroups.com

[jQuery] Re: Shorten the JQuery code

2009-04-16 Thread Joseph Le Brech
like that. It is terse, and very elegant, but not > > all that readable from a "coding for the next guy" mentality. > > > > _ > > > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of Joseph Le Brech > > S

[jQuery] Re: Shorten the JQuery code

2009-04-16 Thread Joseph Le Brech
I'm impressed by the [] brackets, does that eval() the 'hide' and 'show' strings? > Date: Thu, 16 Apr 2009 14:08:09 -0700 > Subject: [jQuery] Re: Shorten the JQuery code > From: michaell...@gmail.com > To: jquery-en@googlegroups.com > > > $('#no-defs')[$('.def').length==0?'show':'hide'](); >

[jQuery] Re: Shorten the JQuery code

2009-04-16 Thread Joseph Le Brech
or try ndfs=$('#no-defs');($('.def').length == 0) ? ndfs.show() : ndfs.hide(); > Date: Thu, 16 Apr 2009 13:54:07 -0700 > Subject: [jQuery] Re: Shorten the JQuery code > From: morni...@gmail.com > To: jquery-en@googlegroups.com > > > There isn't much you can do with that since you can't conditi

[jQuery] Re: Is jquery safe ?

2009-04-09 Thread Joseph Le Brech
If you are genuinely asking that question! then no, it's not safe!! > Date: Thu, 9 Apr 2009 03:22:27 -0700 > Subject: [jQuery] Is jquery safe ? > From: erdeveshmis...@gmail.com > To: jquery-en@googlegroups.com > > > Hi, > > I am using the latest version of jquery. I want to confirm that is > t

[jQuery] Re: Find if a checkbox is ticked or not by user

2009-04-08 Thread Joseph Le Brech
sorry in advance if this doesn't work straight off, im typing from hotmail directly. try if(len($("#chk1 :checked"))>0){ } or if($("#chk1").attr("checked")==true){ } > Date: Tue, 7 Apr 2009 23:15:29 -0700 > Subject: [jQuery] Find if a checkbox is ticked or not by user >

[jQuery] Re: Jquery makes two ajax requests in one!!

2009-04-08 Thread Joseph Le Brech
t; > as i said before i see in output only one alert box so the event > > > handler callback is just called once. I don't change anything in the > > > origjnal selectbox > > > > > On Apr 8, 10:49 am, Joseph Le Brech wrote: > > > > > > Can you pu

[jQuery] Re: addClass on ahref link on the fly

2009-04-08 Thread Joseph Le Brech
where your anchor tag? > Date: Wed, 8 Apr 2009 02:59:08 -0700 > From: ayssel...@gmail.com > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: addClass on ahref link on the fly > > > > Thanks for the quick reply evo-2 : it's run! I've tried this before but not > with the ul balise maybe w

[jQuery] Re: Jquery makes two ajax requests in one!!

2009-04-08 Thread Joseph Le Brech
Can you put a breakpoint to see if it runs change twice? Do you change the value and the text or something similar? > Date: Wed, 8 Apr 2009 00:49:45 -0700 > Subject: [jQuery] Re: Jquery makes two ajax requests in one!! > From: marcomenozz...@gmail.com > To: jquery-en@googlegroups.com > > >

[jQuery] Re: nodes in firefox 3 won't collapse

2009-04-07 Thread Joseph Cocco
Nevermind... turns out someone had put a "float:left" on LI. I just added a "float:none" and now everything works fine. On Apr 3, 4:07 pm, Joseph Cocco wrote: > some basic info: > jQuery: 1.3.2 > Plugin: Jörn Zaefferer'sTreeviewplugin (1.4.1) > coding wi

[jQuery] [treeview] nodes in firefox 3 won't collapse

2009-04-03 Thread Joseph Cocco
some basic info: jQuery: 1.3.2 Plugin: Jörn Zaefferer's Treeview plugin (1.4.1) coding with asp.net c# We are building out the HTML for the treeview in the codebehind, and then adding it to the innerHTML of a UL already on the page. This has not given us any issues in IE. The treeview renders p

[jQuery] Re: How to cancel events

2009-04-03 Thread Joseph Le Brech
It think you have to "return false" in order to stop form submition. Is that what you meant? > Date: Thu, 2 Apr 2009 20:37:01 -0700 > Subject: [jQuery] How to cancel events > From: iceange...@gmail.com > To: jquery-en@googlegroups.com > > > How can i cancel a change event? i have validated te

[jQuery] Re: HELP: a = $('foobar'); a.after('xyz') not adding element

2009-03-30 Thread Joseph Le Brech
do not underestimate the power of $() > Date: Mon, 30 Mar 2009 08:36:48 -0700 > Subject: [jQuery] Re: HELP: a = $('foobar'); > a.after('xyz') not adding element > From: stephen.cant...@gmail.com > To: jquery-en@googlegroups.com > > > Thanks (late) to everybody for answering.Saw your posts jus

[jQuery] Re: How to access variable outside function

2009-03-30 Thread Joseph Le Brech
because you are updating i asyncronously it will be overwritten asynconously. what you could do is add your "purged" data to an array, and read that array elsewhere in a loop. > Date: Mon, 30 Mar 2009 07:20:21 -0700 > Subject: [jQuery] Re: How to access variable outside function > From: ice

[jQuery] Re: How to wait for getJSON to complete before continue?

2009-03-30 Thread Joseph Le Brech
From: iceange...@gmail.com > To: jquery-en@googlegroups.com > > > hmm... is there a diff bet > > .getJSON("url", function_name); > > function function_name(json) { > > } > > and > > getJSON("url", function(json){ ... }); > > On Mar 3

[jQuery] Re: How to wait for getJSON to complete before continue?

2009-03-30 Thread Joseph Le Brech
get rid of the curly braces at the end of the delegate call also :) i accidentally left them in. From: martijn.hout...@gmail.com Subject: [jQuery] Re: How to wait for getJSON to complete before continue? Date: Mon, 30 Mar 2009 15:55:40 +0200 To: jquery-en@googlegroups.com On Mar 30, 20

[jQuery] Re: How to wait for getJSON to complete before continue?

2009-03-30 Thread Joseph Le Brech
.getJSON("url", function_name(json) {}); /* elsewhere */ function function_name(json){ } _ View your Twitter and Flickr updates from one place – Learn more! http://clk.atdmt.com/UKM/go/137984870/direct/01/

[jQuery] Re: getJSON() response into a table

2009-03-21 Thread Joseph Le Brech
have you got firebug? use the inspector to find out what it produces. From: css.mau...@gmail.com To: jquery-en@googlegroups.com Subject: [jQuery] Re: getJSON() response into a table Date: Sat, 21 Mar 2009 15:23:31 -0300 Hi Joseph, Thanks, but this didn't solve. Any ideas? Mau

[jQuery] Re: getJSON() response into a table

2009-03-21 Thread Joseph Le Brech
$.getJSON("url", function(json){ $(json).each(function(){ row = $("#table").append(""); $(row).append("").html(json.cell1.value); $(row).append("").html(json.cell2.value); }); }); something like this? sorry im just coding this blind from my email account. >

[jQuery] Re: How to play a sound on click and embed a bg sound

2009-03-16 Thread Joseph Le Brech
you want to play .au files to keep cpu responses quick with the sacrifice of a little bandwidth > Date: Mon, 16 Mar 2009 09:31:47 + > From: radioactiv...@gmail.com > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: How to play a sound on click and embed a bg sound > > > As much as I

[jQuery] Re: Do you have jQuery MVC plugin ?

2009-03-16 Thread Joseph Le Brech
I don't get this, isn't javascript supposed to be part of the view layer? maybe at a stretch part of the controller layer. is this something similar to google gears where the model is stored in cookies too? > From: blackange...@gmail.com > To: jquery-en@googlegroups.com > Subject: [jQuery]

[jQuery] Re: AutoComplete

2009-03-11 Thread Joseph Le Brech
@googlemail.com To: jquery-en@googlegroups.com Do i access "data" like this; $("example").html(data); On Wed, Mar 11, 2009 at 3:11 PM, Joseph Le Brech wrote: you should be sanitising your sql aswell. > Date: Wed, 11 Mar 2009 08:00:23 -0700 > Subject

[jQuery] Re: AutoComplete

2009-03-11 Thread Joseph Le Brech
you should be sanitising your sql aswell. > Date: Wed, 11 Mar 2009 08:00:23 -0700 > Subject: [jQuery] Re: AutoComplete > From: morni...@gmail.com > To: jquery-en@googlegroups.com > > > What is the purpose of the ".get()" ? > > The autocomplete plugin already has the ajax call all wired into i

[jQuery] Re: add to

2009-03-10 Thread Joseph Le Brech
$("").appendTo("#myList").html("Please show up"); the one you used those should also work tho. > Date: Tue, 10 Mar 2009 14:18:57 -0700 > Subject: [jQuery] add to > From: elsch...@googlemail.com > To: jquery-en@googlegroups.com > > > Hi there, > I am probably trying the most basic example and

[jQuery] Re: .append misbehavior in MSIE7 with cross-window element injection

2009-03-10 Thread Joseph Le Brech
What about something like this? $($(opener.document).find("#injectHere")).append(newElement); > Date: Tue, 10 Mar 2009 08:32:28 -0700 > Subject: [jQuery] .append misbehavior in MSIE7 with cross-window element > injection > From: nekura.n...@gmail.com > To: jquery-en@googlegroups.com > >

[jQuery] Re: How can I use VAR str into json object

2009-03-10 Thread Joseph Le Brech
just a wild guess but have you tried this.str? > Date: Mon, 9 Mar 2009 22:15:27 -0700 > Subject: [jQuery] How can I use VAR str into json object > From: gordiany...@gmail.com > To: jquery-en@googlegroups.com > > > var str = "hello"; > var json = { > str: "123" > } > > I know this is not jquer

[jQuery] Re: How to remove li inside UL

2009-03-09 Thread Joseph Le Brech
try $(li)[0].remove(); or $(li[0]).remove(); > Date: Mon, 9 Mar 2009 03:53:47 -0700 > Subject: [jQuery] How to remove li inside UL > From: nirajke...@lucent.com > To: jquery-en@googlegroups.com > > > Hi, > > I want to remove selected list items from a UL. Can i do using remove > (). >

[jQuery] Re: Ajax Dot Net Plugin

2009-03-04 Thread Joseph Le Brech
x27;Hello World'); > $(".HelloWorld").text(obj); > }, > error: function(x, y, z) { > alert(x.responseText); > alert(y.responseText); > alert(z.responseText); > } > }); > > > Additionally y.responseText and z.responseText come out as undefined. >

[jQuery] Re: Ajax Dot Net Plugin

2009-03-04 Thread Joseph Le Brech
s that your ASP.NET > code can't parse the results to JSON > > > > On Mar 4, 11:02 am, Joseph Le Brech wrote: > > get firebug and put a breakpoint on for the line for error. > > > > > > > > > Date: Wed, 4 Mar 2009 07:58:45 -0800 > > >

[jQuery] Re: Ajax Dot Net Plugin

2009-03-04 Thread Joseph Le Brech
get firebug and put a breakpoint on for the line for error. > Date: Wed, 4 Mar 2009 07:58:45 -0800 > Subject: [jQuery] Re: Ajax Dot Net Plugin > From: cakeordeat...@gmail.com > To: jquery-en@googlegroups.com > > > P.S. > > alert(y) gives Not Found > alert(z) gives SyntaxError: JSON.parse > >

[jQuery] Re: next() question

2009-03-04 Thread Joseph Le Brech
-item-selected")').eq(index + 1).trigger('click'); }); }); :after is not documented on the jquery selector page: http://docs.jquery.com/Selectors should it be added? On Wed, Mar 4, 2009 at 4:21 PM, Joseph Le Brech

[jQuery] Re: next() question

2009-03-04 Thread Joseph Le Brech
you should be able to use the :after pseudo element http://www.w3.org/TR/CSS2/selector.html#before-and-after > Date: Wed, 4 Mar 2009 16:10:03 +0100 > Subject: [jQuery] next() question > From: aplennev...@gmail.com > To: jquery-en@googlegroups.com > > > Hello, > > say i have this markup:

[jQuery] Re: new Whitehouse.gov uses jQuery 1.2.9

2009-03-04 Thread Joseph Le Brech
Daym Barrack is L33t!! > Date: Wed, 4 Mar 2009 12:31:44 +0500 > Subject: [jQuery] Re: new Whitehouse.gov uses jQuery 1.2.9 > From: ilovejqu...@gmail.com > To: jquery-en@googlegroups.com > > > It's OK Brad, > > It was discussed here previously and probably the whole internet knows > by now :))

[jQuery] Re: Reordering rows using JQuery

2009-03-03 Thread Joseph Le Brech
plugin http://tablesorter.com/docs/ > Date: Mon, 2 Mar 2009 19:35:00 -0800 > Subject: [jQuery] Reordering rows using JQuery > From: sandeshm...@gmail.com > To: jquery-en@googlegroups.com > > > I have an aspx page that looks something like this: > > > Some label > Some complex control >

[jQuery] Re: cant get jquery to work

2009-03-02 Thread Joseph Le Brech
get firebug, it will let you step through your code. > From: r...@whitestonemedia.com > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: cant get jquery to work > Date: Mon, 2 Mar 2009 10:38:41 -0500 > > > on this line: > > alert("Thanks for visiting!");) > > take out the last ")"...it

[jQuery] Re: $.getJSON

2009-03-02 Thread Joseph Le Brech
My project has an example of getJSON() here. http://code.google.com/p/ajaxmmo/source/browse/trunk/src/static/default.js#105 > Date: Mon, 2 Mar 2009 03:12:34 -0800 > Subject: [jQuery] Re: $.getJSON > From: seas...@gmail.com > To: jquery-en@googlegroups.com > > > Using console.log and fire

[jQuery] Re: AJAX File Upload Options

2009-02-27 Thread Joseph Le Brech
try and use ocupload that's worked a treat for me in the past. > Date: Fri, 27 Feb 2009 04:09:48 -0800 > Subject: [jQuery] Re: AJAX File Upload Options > From: dyla...@gmail.com > To: jquery-en@googlegroups.com > > > Here's the actual site I got the idea from, with source code. > http://www.am

[jQuery] Re: My first jQuery

2008-06-04 Thread Joseph DJOMEDA
hi i'm also a newby.try with something simple to see whether you have set jquery well.even copy and paste from a tuorial.just to be sure your are not looking for something elsewhere. 2008/6/4 gandalf458 <[EMAIL PROTECTED]>: > > I'm trying my first simple jQuery task, a mouseover event to display

[jQuery] Re: New Twitter Account for jQuery & jQuery UI Projects

2008-04-30 Thread Joseph
Rey, Great news indeed! Twitter has fully replaced 99% of my RSS feeds, so this is truly a good idea ; ) I am following you guys! Cheers, Joseph Hurtado Web Developer Toronto, Canada On Apr 27, 3:05 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > In an effort to maximize the

[jQuery] Re: Shared variables, events, and namespaces...

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: Cycle Plugin help request (IE6/7 issue)

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: PHP Framework Integration

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: animation: sequential showing / hiding : how-to?

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: Is JQGrid available

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: [SITE SUBMISSION] YourDoorandMore.com

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: Cycle Plugin help request (IE6/7 issue)

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: [SITE SUBMISSION] YourDoorandMore.com

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: Cycle Plugin help request (IE6/7 issue)

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: animation: sequential showing / hiding : how-to?

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: animation: sequential showing / hiding : how-to?

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: [SITE SUBMISSION] YourDoorandMore.com

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Re: Cycle Plugin help request (IE6/7 issue)

2007-12-17 Thread Joseph Morris
I am out of the office today, Monday 12/16/2007. I will be back in the office Tuesday 12/17/2007. If you need to reach me due to an emergency, please call my mobile at 770.367.8401. Thanks, Joe

[jQuery] Table row drag and drop

2007-08-31 Thread Joseph Wenninger
mments are very welcome Kind regards Joseph Wenninger