Thank you very much. That did it.
Jörn Zaefferer wrote:
>
>
> tcollogne schrieb:
>>
>> Thanks for the suggestion. I tried this :
>>
>> $.extend($.validator.messages, {
>> messages: {
>> required: "new message"
>> }
>> });
>>
>> But that doesn't seem to do anything. Is
Just ran into this bug in IE 6 and 7: using "class" trigger's IE's
reserved keyword garbage, so one improvement should be replacing the
variable "class" with anything else - maybe "cssClass".
Hi,
This is frustrating! First, because I'm having a problem I can't
solve. Second, because I can't track down the solution (though I know
I've seen it before- albeit months ago).
After something is clicked, this code is executed:
$("#commenting").append(""+fill+"x");
Now, as you can probably
Documentation is a great place to get started. That is exactly where
I started. When I wanted to learn more about jQuery and also help
out, I started documenting and ended up writing many of the example
demos that are now in the wiki while learning quite a bit about how
jQuery worked. Just copy
JQZoom has been updated to v1.1
http://www.mind-projects.it/blog/?page_id=14
It acts as a magnifier for images.
Rey
I like it. But you have one minor issue. it should be ac_even - not
ac_event. :) Close though
Is this going to be in the next stable release?
Shawn
Jörn Zaefferer wrote:
>
> Jörn Zaefferer schrieb:
>> Your workaround is what I would have proposed. I'll look into a better
>> solution,
Great work!
Fred
On Dec 18, 2007 10:42 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> I'd been playing with jQuery and building tables from JSON data, and
> then flot came along right at the same time I was working on a project
> that required graphing data that was already in tables. I wr
Josh
I found the issue but it caused me a bunch of other problems. I did
not have a document header in my page. Once I add that then clockpick
worked. It broke a bunch of other stuff though. Looks like I am back
to the drawing board.
Thanks for your help.
On Dec 17, 3:56 pm, "Josh Nathanson
I've been looking at this for a while and can't get this to work.
What I want to do is submit a form, but have the page not redirect to
the form page, but rather to refresh a div in the current page. This
should be simple, but everything I do ends up taking me to the
submitted form response page.
I don't have a problem with the current documentation style. But then
again, I'm using it as a reference not an instruction guide.
Perhaps the various pages can/should be expanded with "how to" type
instructions for the more common tasks (mabye another tab?). For instance:
AJAX:
How to repl
I'd been playing with jQuery and building tables from JSON data, and
then flot came along right at the same time I was working on a project
that required graphing data that was already in tables. I wrote a
plugin to help me out that I think other people might find useful:
http://blog.rebeccamurph
I don't know how useful this will be to people, but since I sort of
hacked my around it, maybe it'll help someone else. Sorry for the
messy code.
Sometimes I get long lists foisted upon me whose sole purpose I think
are to uglify my nice neat layout. So I started looking in to ways to
display a t
It'd be helpful if you could post a URL with an example page where the
problem happens. There's a number of things that can come into play,
though it's usually something to do with a large amount of elements
being modified via JavaScript.
Karl Rudd
On Dec 18, 2007 4:54 AM, Daniel Keel <[EMAIL PR
This isn't a jquery based solution (I don't know of any), but might do
what you need:
http://www.netzgesta.de/bevel/
- Jack
bdee1 wrote:
i know there are jquery plugins to round the corners on divs but is there one
that will work on images? to see what i mean take a look at
http://beta.ass
Ahh Makes sense thanks Wizzud.
On Dec 17, 4:31 pm, Wizzud <[EMAIL PROTECTED]> wrote:
> You're nearly there, but what you need to do is *append* to the
> #updstr field, whereas you are currently overwriting its value with
> each iteration of each!
> Personally, I would probably do it slightly diff
I have just one more question. Is it possible to use "return" instead
of "echo" in php function to pass some data back?
The first link is an interesting approach, but unfortunately not
suitable in my case. The table in question is populated by a series of
Ajax calls already (did I mention it's a complex table? :).
I've seen the second link before and had a *kinda* workable solution
with it at one point. But I
It works, thanks a lot.
How do I bind the new form after it is inserted into the DOM? Anyone
have a link to an example?
You're nearly there, but what you need to do is *append* to the
#updstr field, whereas you are currently overwriting its value with
each iteration of each!
Personally, I would probably do it slightly differently, eg...
$(document).ready(function(){
var upd = [];
$( 'input[name^=rlinehval-
i know there are jquery plugins to round the corners on divs but is there one
that will work on images? to see what i mean take a look at
http://beta.asset-guardians.com/.
it is a sit i am working on that in its very early stages. towards the
bottom of the page there are two images (one is a b
Steve Brownlee schrieb:
I know I would help, but it's hard to volunteer to update
documentation for a library when you have no idea what you're
documenting. In order for one of us to actually update the
documentation on the API site or the Wiki, we'd have to be provided
that documentation as we
Hi Folks sorry if this has been repeated :( but i cant seem to find a
specific thread that actually resolves the issue.
I am wanting to use the window/ dialog in Interface. Using Interface
with JQuery 1.2 seems to come up with problems .
The errors i get in when i invoke the window via Firebug
On Dec 17, 2007, at 11:56 AM, LeonL wrote:
>
>
> Hi everyone,
>
> I have an event that is not being listened and I can't figure out why.
>
> The thing is that everything is working fine while all my html code is
> static, but as soon as I modified it with some data pulled from the
> db, the
>
I know I can use the following, and it will work, but is there
something similar in jQuery that's already available?
$('a').click(function() {
a = this;
$.ajax({
url: this.href,
success: function(data) {
alert(a.href);
}
})
});
That's the way people do it in jQuery, althou
Thanks everyone. A version of Jeff's solution works perfectly. (And
sorry if my replies come at odd points in the conversation. I'm stuck
in the new subscriber moderation time warp.)
On Dec 16, 12:59 pm, Flesler <[EMAIL PROTECTED]> wrote:
> @Jeffrey Oops.. silly me, that's true, I didn't realize.
Jason Levine wrote:
> As I put more features into my JAddTo plugin, it's quickly turning from a
> "Add To These Social Networking Sites" plugin into a more general "Add a
> list of links" plugin. Given this, I was thinking of renaming it. What do
> you think of JLinksList? I'm open to suggestio
ok so I'm a little confused. Ive read through several articles about
namespacing and I've looked over several plugins to get a feel for the
structure. The plugins for reference are cluetip and cycle.
So it looks like there are 2 ways to go about namespacing. Version A
or B? Is there any reaso
Hey, jQuery community. I've used MooTools for about a year now, and
am experimenting with jQuery to see if I want to convert or not. So
far it's great, and I especially enjoy how easy it is to "find
things." Here's my first question, though, where MooTools offers a
solution that I haven't found
I know I would help, but it's hard to volunteer to update
documentation for a library when you have no idea what you're
documenting. In order for one of us to actually update the
documentation on the API site or the Wiki, we'd have to be provided
that documentation as we have no idea what the cha
thankss!!
now it's working!
On 17 dez, 16:39, real <[EMAIL PROTECTED]> wrote:
> And $('.class a') wouldn't find the anchor tag. It would be $
> ('a.class')
>
> On Dec 17, 12:41 pm, "Lourenço" <[EMAIL PROTECTED]> wrote:
>
> > Hello,
>
> > i need get the this's parent div, something like this:
Sorry for this double post.
On Dec 17, 6:54 pm, Daniel Keel <[EMAIL PROTECTED]> wrote:
> Hello, this is my first post.
>
> I'm working with jQuery since a month and I have one problem. The $
> (document).ready event doesn't work properly, manly I get the fouc in
> IE and Opera. As far as I have r
Hi everyone,
I have an event that is not being listened and I can't figure out why.
The thing is that everything is working fine while all my html code is
static, but as soon as I modified it with some data pulled from the db, the
click() events doesn't trigger the actions any more.
What I'm d
Jimbo - I checked out that link you sent. It looks like there are a few bad
characters at the beginning of the clockpick.css file. Not sure how those
snuck in there, but you can see them in Firebug, if you go to Net tab, then
CSS, click clockpick.css, then Response tab - you can see some fun
wrap it in [] like:
[{"job_Description":"My Job","job_Notes":"My jobs notes are here."}]
On 12/17/07, jforth <[EMAIL PROTECTED]> wrote:
>
>
> I'm running php 5.2.5
>
> in firebug I get :
>
> invalid label
>
> {"job_Description":"My Job","job_Notes":"My jobs notes are here."}
>
> On Dec 12, 1:38 pm
Jörn Zaefferer schrieb:
Your workaround is what I would have proposed. I'll look into a better
solution, maybe just always adding the class - then its up to you to
only set appropiate styles.
The plugin now always adds "ac_odd" and "ac_even" classes to the select
list items.
Give it a try: h
Check the license gizzle. It's MIT, basically you can do whatever you
like with jQuery as long as you keep the attribution.
Karl Rudd
On Dec 17, 2007 11:39 PM, gizzle <[EMAIL PROTECTED]> wrote:
>
> I would like to know how If I can have rights to use this Framework
> alongside a Framework which
tcollogne schrieb:
Thanks for the suggestion. I tried this :
$.extend($.validator.messages, {
messages: {
required: "new message"
}
});
But that doesn't seem to do anything. Is there something wrong with this?
Try this:
$.extend($.validator.messages, {
Shawn schrieb:
I was able to get the alternating row colors with this code:
$("#dialogTSKComp").autocomplete(
"xhr/autocomplete_company.cfm", {
formatItem : function (data, pos, qty) {
if (pos % 2 == 0) {
return "" + data[0] + "";
}
return data[0];
}
Michael Geary wrote on 12/16/2007 7:57 PM:
I wonder if Hpricot might be a place to start? It's made for HTML, not XML,
though...
http://code.whytheluckystiff.net/hpricot/
AppJet allows you to host webapps for free, with the app written entirely in
JavaScript:
-
With AppJet, you write
Well to my knowledge, the reasons I generally use $.load() is to
inject HTML dynamically into my page. Since you can pass variables in
the $.load() function you're able to do it that way, but I'm not sure
if that's the intended use of that method.
$.get('newsletter_db.php', {email: email, type: t
On Dec 16, 3:51 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]>
wrote:
> hey Sharique,
>
> joke apart, jquery is javascript: javascript is clientside, meaning it runs
> in the browser visiting the website. Serverside languages are PHP, ASP, ruby
> on rails etc... These "serve" the data to the vis
Hi all,
I apologize about this, but I have problems with my ISP.
Just now I have created a new project in google.
http://code.google.com/p/jqgrid/ (not ready jet)
When all is done I will let you known
Again sorry about this problem.
Best Regards
Tony
On 17 Дек, 18:09, Andy K <[EMAIL PROTECTED]>
$("a").click(function(){
$(this).parent().slideUp();
});
// -or-
$("a").click(function(){
$(this).parents("div:first").slideUp();
});
- Richard
On Dec 17, 2007 12:41 PM, Lourenço <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> i need get the this's parent div, something like this:
>
>
> Close
>
And $('.class a') wouldn't find the anchor tag. It would be $
('a.class')
On Dec 17, 12:41 pm, "Lourenço" <[EMAIL PROTECTED]> wrote:
> Hello,
>
> i need get the this's parent div, something like this:
>
>
> Close
>
>
> and in code..
> $(".class a").click(function(){
> $(this < div).slideUp(
$(this).parent().slideUp();
On Dec 17, 2007 12:41 PM, Lourenço <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> i need get the this's parent div, something like this:
>
>
> Close
>
>
> and in code..
> $(".class a").click(function(){
> $(this < div).slideUp(); //here
> });
>
> that way many buttons
FYI - I added this to the FAQ:
http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_determine_the
_state_of_a_toggled_element.3F
Feel free to edit if there are better/additional methods.
Jim
I am using jQuery 1.2.1. The problem has to do with position:absolute
in the css file. I can change position to fixed or relative and I can
see the time but it does not position correctly.
On Dec 17, 10:20 am, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
> Jimbo - make sure you are using at leas
Hello,
i need get the this's parent div, something like this:
Close
and in code..
$(".class a").click(function(){
$(this < div).slideUp(); //here
});
that way many buttons will work with no ids and with the same code!
how can i do it?
i don't wanna use ids...
sorry my bad english
thanks
Josh, I added this link for you to see as well.
http://www.realcoser.net/defaultold.html
Thanks.
On Dec 16, 11:27 am, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
> Jimbo, do you have a link you can post? I don't have IE7 running so I can't
> test it myself, but I can take a look at your code.
Hello, this is my first post.
I'm working with jQuery since a month and I have one problem. The $
(document).ready event doesn't work properly, manly I get the fouc in
IE and Opera. As far as I have red the Dean Edwards solution (http://
dean.edwards.name/weblog/2006/06/again/) is implemented in
this one has worked for me:
http://groups.google.com/group/jquery-en/browse_thread/thread/f5d695b6a2fb2059/56b2de173e480263?lnk=gst&q=jay+fallon#56b2de173e480263
On Dec 17, 12:09 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm using the toggle method to show/hide divs
>
> $('#gi
Hi Klaus! Thanks for the quick reply and excellent explanation. :)
That makes a lot of sense to me now. I will be sure to follow that
practice from now on.
Also, thank for the critique on my variable name(s)... I am going to
re-name a few for the sake of better clarity.
I owe you one! Thanks!
Hello, this is my first post.
I'm working with jQuery since a month and I have one problem. The $
(document).ready event doesn't work properly, manly I get the fouc in
IE and Opera. As far as I have red the Dean Edwards solution (http://
dean.edwards.name/weblog/2006/06/again/) is implemented in
Here's another way:
var isVisible = $('#giftMsg').is(':visible');
var isHidden = $('#giftMsg').is(':hidden');
That reads nicely enough that dedicated functions are not needed.
- Richard
On Dec 17, 2007 12:20 PM, James Dempster <[EMAIL PROTECTED]> wrote:
>
> $('#giftMsg:visible').length == 1
>
I'm not sure the relationship of your frames, but I've solved this like
this:
if (typeof($)=='undefined' && window.parent.$)
{
$ = window.parent.$;
}
Which maps the jquery object in the parent frame to the child frame.
JK
-Original Message-
From: jquery-en@googlegroups.com [mai
Jimbo - make sure you are using at least jQuery 1.2.1 - I think it should
work with the older versions but you never know. It looks like you might be
using an older version. If that still doesn't work then we can continue to
troubleshoot.
-- Josh
- Original Message -
From: <[EMA
$('#giftMsg:visible').length == 1
Will only select the element if it is visible, if it's not visible
length will be 0 as it would have not been able to select the element.
@see http://docs.jquery.com/Selectors/visible and
http://docs.jquery.com/Selectors/hidden
for more information
/James
On
Hi,
I'm using the toggle method to show/hide divs
$('#giftMsg').toggle();
But how do I check if a div is currently displayed or not? I've
discovered that there is no such thing as a "shown()" or "hidden()"
method. - Dave
There seems to be a problem with the trirand.com site. About 60% of
http connections fail. Quite unfortunate, actually, since jqGrid is a
very close fit to the requirements of a project I'm working on. I do
have a copy of the version 3.0 rc demos download (which contains a
copy of the plugin and c
I have two frames: "code" and "display". I can use JQuery API from
"display" where my "document" is, but do not know how to use it from
another ("code") frame.
What do I put in $()?
For example in tableSorter:
$(window.display.document + "#example").tablesorter() --- does not
work.
This is ho
Problem solved, folks. Mike pointed out in an email that I had a
trailing comma in my js that was strangling IE.
"And now we know!"
On Dec 17, 9:35 am, objective <[EMAIL PROTECTED]> wrote:
> Yeah... I did that also.
>
> #slideshow { /* container positioned in relation to the containing
> header
Well, depending on how to implement it, you'd have to pass some kind of
argument:
PHP File, "myscript.php":
JavaScript:
$.get("myscript.php",{'func':'2'},function(data){
// data now contains "Hello from 2"
});
$.get("myscript.php",{'func':'1'},function(data){
// data now contains "Hello fr
Sigh, yes - I'm tired. :-P
--John
On Dec 17, 2007 10:49 AM, Richard D. Worth <[EMAIL PROTECTED]> wrote:
> I assume you meant:
>
> http://dev.jquery.com/report/22
>
> - Richard
>
>
>
> On Dec 17, 2007 9:50 AM, John Resig <[EMAIL PROTECTED]> wrote:
> >
> > Just the bug list, for now:
> >
> > htt
Ok but if You have for exaple 3 php functions ( function1(),
function2(), function3() ) in the document and you want to call
function2() what can you do?
Does this actually work? Did you get this to work? I am trying to do
the exact same thing, so for each link I need to pass 3 parameters to
by server script.
-Roman
On Dec 4, 6:03 am, Feijó <[EMAIL PROTECTED]> wrote:
> I like to set my own attributes, like that
>
> click here
>
>
> $(document)
I'm running php 5.2.5
in firebug I get :
invalid label
{"job_Description":"My Job","job_Notes":"My jobs notes are here."}
On Dec 12, 1:38 pm, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> Two quick questions:
> what version of php are you running? I believe that zend only supports
> php5,
All,
I'll looking to add a default option to the drop down list for the
jQuery paging plugin for the jquery tablersorter. I want to be able to
select an option "all" that will display all the records returned to
the page. Any examples or pointers to examples of this would be good
would be great.
Josh, here is a small test page that I setup for testing. Thanks.
http://www.w3.org/1999/xhtml"; >
Real-closer.com
jQuery(document).ready(function(){
$("#test").unbind().clockpick({layout: 'vertical',minutedivisions:
12});
});
On
On 17 Dez., 08:31, Micky Hulse <[EMAIL PROTECTED]> wrote:
> Hi again,
>
> So, yes! The code works! Many thanks for the tips. :)
>
> In your last example, I am just wondering about the $ (dollar sign)
> before the "foo" variable. When should I use that on variables? I
> assume that I would do this
A google search for jquery fxqueue also turns up these:
http://erikandcolleen.com/erik/jquery/fxQueue/
http://brandonaaron.net/jquery/plugins/fxqueue/
Not sure if they'll work with newer versions of jQuery, but maybe worth
checking out.
--Erik
On 12/17/07, pixeline <[EMAIL PROTECTED]> wrote:
>
I assume you meant:
http://dev.jquery.com/report/22
- Richard
On Dec 17, 2007 9:50 AM, John Resig <[EMAIL PROTECTED]> wrote:
>
> Just the bug list, for now:
> http://code.jquery.com/jquery-1.2.2b.js
>
> We'll have full release notes when the release is finished.
>
> --John
>
> On Dec 17, 2007 9:
Hi Andy,
The documentation site is a Wiki, so all you have to do is sign up
with a user name and password and then start editing/adding wherever
you see that the documentation can be improved.
http://docs.jquery.com/index.php?title=Special:Userlogin&type=signup
--Karl
_
K
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
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
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
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
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
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
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
As I put more features into my JAddTo plugin, it's quickly turning from a
"Add To These Social Networking Sites" plugin into a more general "Add a
list of links" plugin. Given this, I was thinking of renaming it. What do
you think of JLinksList? I'm open to suggestions if anyone has a good
nam
I'm getting an error when trying to view the closed bug list.
Trac detected an internal error:
IntegrityError: (1062, "Duplicate entry '090625352391e7c-0-0' for key
1")
On Dec 17, 8:50 am, "John Resig" <[EMAIL PROTECTED]> wrote:
> Just the bug list, for now:http://code.jquery.com/jqu
:)
Good reply John...
How can I help? I'd like to give back, but I'm not sure where to start. Do
you by chance have a list of ways in which people can give back to jQuer?
That might be a good means by which to draw users tigher into the community.
andy
-Original Message-
From: jquery
The API browser will be updated when 1.2.2 is complete - it's just a
beta release right now.
As far as the rest: Are you offering to help? We're always looking for
volunteers.
--John
On Dec 17, 2007 9:38 AM, Andy Matthews <[EMAIL PROTECTED]> wrote:
>
>
> It's all well and good that the jQuery t
Just the bug list, for now:
http://code.jquery.com/jquery-1.2.2b.js
We'll have full release notes when the release is finished.
--John
On Dec 17, 2007 9:47 AM, MorningZ <[EMAIL PROTECTED]> wrote:
>
> John,
>
> Is there anything out there that points out the differences between
> 1.2 and this ne
John,
Is there anything out there that points out the differences between
1.2 and this new version?
I just went through browsing the Wiki and didn't see anything like
that
On Dec 16, 9:47 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> Hey Everyone -
>
> We just pushed a beta copy of jQuery 1.
I've been trying to do this for awhile now too. Sounds like I have
the same issues with my app.
Have you checked out any of the following?
http://ajaxtop.sourceforge.net/tablescroller/example1.html
http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html
On Dec 16, 3:44 am, Sh
It's all well and good that the jQuery team is coming out with new release,
but what about the equally important documentation issue?
1.2.1 has been out since what Aug? Sept? And documentation still isn't much
help?
The API browser (http://jquery.com/api/) still references version 1.1.2.
Docu
Yeah... I did that also.
#slideshow { /* container positioned in relation to the containing
header div */
margin: 0;
padding: 0;
height: 192px;
width: 380px;
position: absolute;
left: 224px;
top: 88px;
}
/* SLIDESHOW DETAILS
If you could provide a link to a test page online, that would make it much
easier for someone to see what you're seeing and hopefully help you debug
it. Or, if you're not able to do that, create a pastie of your whole page:
http://paste.pocoo.org/
- Richard
On Dec 14, 2007 3:21 PM, Null <[EMAIL
I would like to know how If I can have rights to use this Framework
alongside a Framework which will enable JavaScript callbacks and cool
functionality like Ajax within the new PHP Framework. Although I can
make my own I am not going to be able to maintain this part of the
Framework in future. Thi
Hi again,
So, yes! The code works! Many thanks for the tips. :)
In your last example, I am just wondering about the $ (dollar sign)
before the "foo" variable. When should I use that on variables? I
assume that I would do this if I am going to use that variable to
reference an element... For exam
Just started to use jquery and am very impressed.
I wanted to look at the jqgrid but the trirand site seems to no longer
exist or is down. Is it still available.
Thanks
Bill
I'd check your CSS. I had to define the image size for the container
holding my images in my CSS:
.pics {
height: 320px;
width: 450px;
padding: 0;
margin: 0;
}
>From his site: "CSS Rules! When building your slideshows, remember that
animation effects work best wh
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
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
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
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
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
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
1 - 100 of 108 matches
Mail list logo