Well, i guess we have to wait for brian himself to explain what he
means.
@Josh: by the way, if i'm not mistaken or miscount (and i haven't
tried to run it yet), i think your script has one quote (') less,
hasn't it?
Anyway, those 'string munging' is indeed rather confusing...
On Mar 12, 12:03
I have not tested nor worked with lots of tree widgets, but treeView
is a lightweight and robust plugin...
http://be.twixt.us/jquery/treeView.php
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Wed, Mar 11, 2009 at 11:57 PM, Tim Johnson wrote:
>
> Hello:
> If jquery i
You can do it yourself. Go to your membership settings...
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Thu, Mar 12, 2009 at 1:26 AM, Pavel Philippenko wrote:
> Can You please remove me from jquery newsletter
>
I remember a post regarding moving jquery to some hosting that has
many synchronized servers all over the world (US, Europe, Asia...).
I guess they are not getting synched or something...
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Thu, Mar 12, 2009 at 9:28 AM, Eri
I'm seeing this too. Quite sure it's not a cache problem on my end as I've
never visited jquery.com on this browser before.
--Erik
On Wed, Mar 11, 2009 at 2:56 PM, MarcusT wrote:
>
> The jQuery.com homepage's currently shows "jQuery 1.3.1
> Released" as the most recent blog post, yet i
Well, if you don't have any other events bound to your element, then
simply unbind the event.
For example, if it is on hover, unbind on hover. if it is on click
unbind click event...
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Thu, Mar 12, 2009 at 4:14 AM, Pedram
jQuery 1.3.1 Released, dated January 21st is the latest one that I see.
On Wed, Mar 11, 2009 at 11:16 PM, jQuery Lover wrote:
>
> Mine is up to date... the latest news is about jquery ui 1.7 release...
>
> Anyone with similar problems ?
>
Mine is up to date... the latest news is about jquery ui 1.7 release...
Anyone with similar problems ?
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Thu, Mar 12, 2009 at 2:56 AM, MarcusT wrote:
>
> The jQuery.com homepage's currently shows "jQuery 1.3.1
> R
That is exactly what it stands for :)
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Thu, Mar 12, 2009 at 9:09 AM, Josh Powell wrote:
>
> @7times9
>
> I'm not sure what eq() stands for, come to think of it, but I always
> read it in my heads as 'equals' as in the inde
@7times9
I'm not sure what eq() stands for, come to think of it, but I always
read it in my heads as 'equals' as in the index equals 2.
> On Thu, Mar 12, 2009 at 10:04 AM, 7times9 <7tim...@googlemail.com> wrote:
>
> > ...what does eq as in .eq(2) stand for?
>
> > It helps me to read jQuery in my
1. You could create a variables with higher scope or pass in as
additional arguments to your callback function. Use "arguments" to get
your variables.
2. Did you try to specify the return type as well in your $.get() function?
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
@mkmanning
> An even more important performance gain can be had by
> not doing string concatenation (I put a caveat about this in the code
> comment's also), but build an array of your html and then join the
> array; it's siginficantly faster.
Funny that you mention this. In current browser vers
Deja Vu :)
Why use a separate array?
$('.design_html_nav li').each(function(){
var a = $(this).find('a').attr('href');
if(a[0].href===file){
a.addClass('selected');
}
});
On Mar 11, 3:36 pm, ksandn...@gmail.com wrote:
> Hi there,
>
> What I'm trying to do
I suggest reading through:
http://docs.jquery.com/
In this case the page you want is:
http://docs.jquery.com/Traversing
Karl Rudd
On Thu, Mar 12, 2009 at 10:04 AM, 7times9 <7tim...@googlemail.com> wrote:
>
> ...what does eq as in .eq(2) stand for?
>
> It helps me to read jQuery in my head
...what does eq as in .eq(2) stand for?
It helps me to read jQuery in my head if I know what abbreviations
really mean :-)
Thanks
Nobody?
I have two inputs using autocomplete. The second passes an extra
parameter based on the value of first. However, the second input box
will not be update it's local results when value of the first input
box changes. I've tried clearing the cache and that doesn't seem to
work. The best I can do is i
Hi there,
What I'm trying to do as add a 'selected' class to the current page
navigation link. I want to cycle through all the page links and if
'file' matches 'hrefs', add the class accordingly. Specifically, I'm
having problems with the last part of code below ---if (hrefs[i] ==
file) {$(this).
I have been reading through the group but I can't find exactly what I
am looking for.
I am using jquery get to process an xml file and am wonder about a few
things.
1. How do I get the function to use the data I pass in, in this case
name:"yyy"
2. the code below works in FF but IE7 returns a blank
Hi all
I've released jquery.scrollTo 1.4.1[1] and jquery.localScroll 1.2.7
[2].
Both contain some nice enhancements and a fair amount of small
features.
Both old and new versions are compatible with jQuery 1.2.x and 1.3.x.
jquery.scrollTo 1.4.1 implements synchronic animations by default (1.3
ad
Why use a separate array?
$('.design_html_nav li').each(function(){
var a = $(this).find('a').attr('href');
if(a[0].href===file){
a.addClass('selected');
}
});
On Mar 11, 3:16 pm, vintagetwitch wrote:
> Hi all,
>
> What I would like to do is add a 'select
Hi everyone. Here's my attempt:
"use strict";
/*!
* JavaScript UUID Generator, v0.0.1
*
* Copyright (c) 2009 Massimo Lombardo.
* Dual licensed under the MIT and the GNU GPL licenses.
*/
function UUID() {
var uuid = (function () {
var i,
c =
> $('#orderlineform #product_id').live('change',isRentalActive);
The change event isn't one of the ones supported by .live(), in fact
it's specifically documented as not supported:
http://docs.jquery.com/Events/live#typefn
The .live() method requires events to bubble to the document level
where
Hi all,
What I would like to do is add a 'selected' class to a list of navigation
items based on if the href attribute of the link matches the current page. I
know I could do this with php, but that's not an option for this particular
item I'm working on.
The code I have so far is this:
The al
The jQuery.com homepage's currently shows "jQuery 1.3.1
Released" as the most recent blog post, yet if you look at the blog
(or RSS) there have been 6 blog posts since, including the jQuery UI
1.7 and jQuery 1.3.2 releases!
Presumably there's some server-side caching going on here and it
That makes sense now. got it working by doing the following:
looped through all ul's on page. setting two attributes (ul_h and ul_m)
setting the max and min height respectivly)
ul.attr("ul_h", ulh);
ul.attr("ul_m", h);
Then on my onclick I called in those atributes as the hieght to animate.
ulh
When javascript/HTML kicks in the headers have already been sent,
there is nothing you can do except offering copy & paste :)
A server-side script that does it for you is not much of a burden, it
could be made very light. I think you could get the text from POST and
stream it directly without th
Dear folk ,
I'm working with the CLuetip plugin
I faced a problem .
How can I remove the Clutip from an object
for example :
$("div").cluetip();
$("div").removeCluetip(); // I want to do this
Thanks
Remove the 'on' from onchange.
On Mar 11, 12:59 pm, dziobacz wrote:
> I have:
>
>
> id="sf_guard_user_username" />
>
>
>
>
>
> I would like after each change in input 'sf_guard_user_username' write
> something between .
>
> What is wrong in my code below:
>
> $(document).ready(functi
Wrapping everything inside the onclick function will break it, as the
ul height will be recalculated on each click.
Add a console log for the height and you'll see:
var me = $(this), ul = me.parent().children("ul"), ulh = ul.height(),
h = 0;
console.log(ulh);
On Mar 11, 2:46 pm, Brian wrote:
>
Wow. Thank you so much for this explanation, I really appreciate it :)
On Mar 10, 5:35 pm, mkmanning wrote:
> 'el' and 'spn' variables are both so we can cache the jQuery object
> and save having to do the traversal again later in the function; this
> is generally a good practice from a performa
>
> Hello,
>
> I have a couple of hidden divs with iframes linked to external sites
> using the "display:none" css tag. They are then revealed using a
> button. The problem is that the hidden divs load the iframe content
> even if the buttons are never clicked causing a very slow page load.
> Is
Thanks for your reply. I'm not using the History plugin, however (just
trying to add back and next tab links within the tabs themselves, not
back or next in terms of browser history). So this probably isn't
related to History, right?
Would it be worth trying UI Tabs instead? I haven't done that s
I found a spot where I can back up safely. This is working, but I have
a new issue to resolve and a decision to make. =)
Thanks ricardobeat!
On Mar 11, 3:35 pm, ricardobeat wrote:
> How about
>
> $('#orderlineform #productlisting').load('orderProxy.cfm',
> {
> mode:'getAvailableProduc
I am almost there... I set the height of each ul without a problem.
Now I seem to be having a problem with the selection of the parent-
child ul
html:
test 1test 1
test 2
test 3
test 4
test 5
hide/show
JS:
$('.control').click(function(){
Hello,
I have a couple of hidden divs with iframes linked to external sites
using the "display:none" css tag. They are then revealed using a
button. The problem is that the hidden divs load the iframe content
even if the buttons are never clicked causing a very slow page load.
Is there anyway u
Thanks...this did the trick:
$('a[rel^="shadowbox"]').each(
function(){
var linkRel = $(this).attr('rel');
var linkTitle = $(this).attr('title');
$(this).attr('rel', linkRel + "title=" + linkTitle);
});
On Mar 10, 1:46 pm, BB wrote:
> Hiroryreiff,
>
> may
History is broken in Safari 3, one of the reasons it was taken out of
UI Tabs.
--Klaus
On 11 Mrz., 21:46, ZAP wrote:
> Hello -
>
> I'm using Klaus' Tabs plugin (Version: 2.7.4) with jQuery 1.2.6, but
> the triggerTab() function just isn't working for me in Safari 3. No
> matter how I create B
I think I figured out the passing part. If I am reading the
documentation correctly it seems that the variable is retrieved in
your PHP file via the $_GET["var"] command (does this seem correct?).
Now I have the ability to check the database for availability but then
I'm stuck again. So the docume
On Wed, Mar 11, 2009 at 1:26 PM, angelo.perazz...@gmail.com <
angelo.perazz...@gmail.com> wrote:
>
> In essence, this is a page with 6 links and 6 initially hidden div. By
> clicking on a link, the div appears relevant, it disappears by
> clicking on the link again thanks to fadeToggle function.
> I seem to be capped at 7mb or so in file size. Nothing seems to really
> happen if I try and upload a file larger (smaller files work
> flawlessly) and ideas?
The form plugin does not impose any file size limitations. However,
your server might.
> how can i make the jquery cycle lite-plugin, found
> athttp://malsup.com/jquery/cycle/lite/, stop after the last image has
> been loaded?
>
> i'm sure this is quite simple for people that know what the syntax is
> about.
Cycle Lite doesn't support that feature. You'll need to use the
regular
I seem to be capped at 7mb or so in file size. Nothing seems to really
happen if I try and upload a file larger (smaller files work
flawlessly) and ideas?
I'm trying to see if it is possible to convert a table on a page to a
csv and offer it to the user for download. Obviously I could grab the
data and post it to the server for some aspx or php to revert it with
the correct content type (or even do it all server side in the 1st
place) but I am tryi
Hello! I have implemented a small function using jQuery.
Unfortunately, I'm still a noob, and I have certainly written a code
longer and more repetitive than it could be. I would therefore ask you
an help to simplify it and improve it.
To simplify things better, you can find what I have done at
But where am I placing the content and image?I dont' see that thank
you for all the help though
On Mar 11, 1:42 pm, Paul Hutson wrote:
> The following will give you a way to do what you want :
>
>
> function UpdateMe(Type)
> {
> if (Type == "Blue")
>
Can You please remove me from jquery newsletter
I have:
I would like after each change in input 'sf_guard_user_username' write
something between .
What is wrong in my code below:
$(document).ready(function()
{
$('#sf_guard_user_username').onchange(function()
{
$("#information").html("d");
});
})
hi,
Is there a fix for email validation?
at this time also emails like "a...@e.f" are valid.
I like that validation script, but it is not really usefull if the
validation of an email doesn't work.
best regards,
mcreisi
You could add the padding to the calculation, but that's pretty ugly.
Instead you could calculate the height differently, for each LI
element (this would also take into account if any LI's wrapped due to
content length):
CSS:
ul {
width:100px;
}
li{
padding:5px;
}
HTML:
Show the rest
Item 1
Ite
Hello -
I'm using Klaus' Tabs plugin (Version: 2.7.4) with jQuery 1.2.6, but
the triggerTab() function just isn't working for me in Safari 3. No
matter how I create Back and Next buttons or links, Safari instead
tries to load a new page (e.g., http://mydomain.com/?#start) instead
of switching tab
$('#zipCode').val().length
On Mar 11, 10:20 am, Chuk wrote:
> Hi. In one of my functions, I would like to test the value of a
> certain field with an id="zipCode". Here is my current code:
>
> function retrieveCityState()
> {
> if ($('#zipCode').value.length > 4)
> {
> ...
> }
>
> }
If #zipCode is an input:
$('#zipCode').val().length
On Mar 11, 1:20 pm, Chuk wrote:
> Hi. In one of my functions, I would like to test the value of a
> certain field with an id="zipCode". Here is my current code:
>
> function retrieveCityState()
> {
> if ($('#zipCode').value.length > 4)
>
Hi. In one of my functions, I would like to test the value of a
certain field with an id="zipCode". Here is my current code:
function retrieveCityState()
{
if ($('#zipCode').value.length > 4)
{
...
}
}
This test doesn't seem to work. How do I correctly handle this using
JQuery? Tha
Dear folk,
recently I found jQuery plug in that allows you to have a auto
complete Combo box so you could have combo box and a auto complete
functionality at the same time
does anyone has a link . thanks
I really appreciate it
Thanks! Now how do I use it?!?!
Hahah. Specifically, let's say I wanted to check on the availablility
of an email address. How do I pass that email address to my PHP
script? I couldn't seem to locate an example on the server side
script, only the JS.
Tim
On Mar 11, 3:11 am, Jörn Zaefferer
wrot
Is there anyway to account for padding on the li of each list? I have
padding which seems to be throwing off the calculations.
On Mar 11, 3:36 pm, Brian wrote:
> mkmanning,
>
> I want to thank you for your contribution. I was able to understand
> your example better (I just didn't get tres's ver
Just wrap your re-usable parts in a container with an ID. IDs have
greater weight on CSS rules, that will usually be enough. putting !
important on all your rules will bloat your code unnecessarily.
See this article on CSS specifity:
http://www.smashingmagazine.com/2007/07/27/css-specificity-thin
I've made too many changes to back up and check to see if this works,
but I appreciate the help. Next time I run into this, I'll attempt
this instead.
On Mar 11, 3:35 pm, ricardobeat wrote:
> How about
>
> $('#orderlineform #productlisting').load('orderProxy.cfm',
> {
> mode:'getAvailab
i fixed the issue, turns out putting a form tag inside a table tag
causes this problem
mkmanning,
I want to thank you for your contribution. I was able to understand
your example better (I just didn't get tres's version) and was able to
come up with the following js/code combo:
$(document).ready(function(){
$('ul').each(function(i) {
var ul
How about
$('#orderlineform #productlisting').load('orderProxy.cfm',
{
mode:'getAvailableProducts',
ordergrade_id:ordergrade_id,
order_id:order_id
},
function(){
$(this).find('#product_id').change
(isRentalActive);
});
On Mar 11, 11:19 am, Todd Rafferty wrote:
>
Can't you load both products, each in it's own container, and show/
hide them? That's easier and faster.
$('#products .blue').show();
$('#products .red').hide();
etc.
On Mar 11, 11:30 am, Desinger wrote:
> Hi,
>
> Product page would like to load different contents in same di
Hello:
If jquery itself does not support a tree widget toolkit,
can anyone recommend one, I've tried dojo but
two problems:
1)doesn't work - even verbatim example
2)No support
3)Very big system
Any comments or recommendation welcome.
thanks
tim
What if you split your messages up?
messages: {
name: {
required: "Namen eintragen"
}
email: {
required: "Eine gültige Email-Adresse eintragen",
email: "Invalid email format"
And that's what I get for skipping the middle; basically the same
solution as tres, just less code (and it works in IE6) :)
On Mar 11, 11:21 am, mkmanning wrote:
> Here's a completely different (and admittedly problematic) approach.
> Instead of creating new markup with a separate list, you coul
Here's a completely different (and admittedly problematic) approach.
Instead of creating new markup with a separate list, you could 'hide'
the LI's over a certain number with CSS, and then animate the
container. Here's a quick example:
JS:
$(document).ready(function(){
var ul = $('#myList
On Mar 11, 6:03 pm, "Richard D. Worth" wrote:
> We'd love to help with this question over on the jQuery UI list:
>
> http://groups.google.com/group/jquery-ui
>
> - Richard
Apologies!, I've posted it over there now.
We'd love to help with this question over on the jQuery UI list:
http://groups.google.com/group/jquery-ui
- Richard
On Wed, Mar 11, 2009 at 12:24 PM, Paul Hutson
wrote:
>
> Hello,
>
> I've been having a problem with the UI.draggable and UI.droppable
> functionality. I've set up my screen like
Andrew,
Typically this error is caused by binding issues. The best way to
prevent it is to make sure that you do any binding of elements in the
dialog in the onShow or onOpen callbacks. It is also a good idea to
use the simplemodal-close class on elements that cause the dialog to
close, as oppose
The following will give you a way to do what you want :
function UpdateMe(Type)
{
if (Type == "Blue")
{
$("#AreaToView").HTML("Blue Stuff");
} else {
$("#AreaToView").HTML("Red Stuff")
You are absolutely right! it worked.
The only thing is i cannot highlight on individual result. If i click on a
select, the result from the database is taken.
Do you know how to make sure i can hover on a single result and select?
Thanks
On Wed, Mar 11, 2009 at 4:57 PM, MorningZ wrote:
>
> the
I think it may be the table width your using for the section - you're
saying that you'll allow a 516 pixel width for the table - so it keeps
filling up the space.
If you want it to act like it does in firefox you could fake it by
putting a div on the right hand side of the page in a high up layer
> > Ajax.Updater allows you to simply update the content of a DIV.
If you want to go back to the super simple, you can update the inner
content of a div with:
$("#DIVID").html("CONTENT");
i.e. :
$("#blah").html("I've just been added to the div blah...");
Therefore, on your callback from th
Hello,
I've been having a problem with the UI.draggable and UI.droppable
functionality. I've set up my screen like the following :
http://outer-empires.com/images/Screenshots/inGame-SpaceStationHome.jpg
At the bottom of the screen you can see the "cargo" and "hanger" area,
people can pick up t
hi there,
since im not quite familiar to javascript and jquery, it's kinda hard
stuff for me to figure out how the cycle lite plugin really advances
to the next image. so i'm asking the guys that know what they're
doing:
how can i make the jquery cycle lite-plugin, found at
http://malsup.com/jque
Help?
On Mar 9, 1:28 pm, Skedoozy wrote:
> I have a horizontal navbar that if the persons screen is under 1024
> wide it sticks out of the table.
>
> In Firefox it works fine so it's only an IE problem but one I need
> fixed.
>
> link
>
> http://dev2.azaz.com/
I believe Brian opted for the suggestion that doesn't involve string
munging; it's just using the natural index of the elements, no slicing
or dicing :)
On Mar 11, 1:01 am, Josh Powell wrote:
> *shrugs* up to you, brian means to use string.splice(a); where a =
> number of characters before the i
the characters the user types in is already added to the request to
the "test.php" file and is query string parameter "q"
if you fire up a tool like Firebug (for FireFox) or Fiddler (for IE)
and you'll see this happening in real time
On Mar 11, 12:35 pm, Bright Dadson
wrote:
> You right!
>
>
In the docs under Ajax, see the load() method.
http://docs.jquery.com/Ajax
http://docs.jquery.com/Ajax/load#urldatacallback
On Mar 11, 8:44 am, "so.phis.ti.kat" wrote:
> Hello Everyone,
>
> I am looking to see if I should switch to jQuery but first need to
> find jQuery's equivalent to Prototype
u can go here http://goingpublic.me/newbr/add.php using FF or opera
and press submit a couple of times and see what happens
hi,
i'm new to jquery, i'm currently using the validation plugin to
validate my forms.
here's my code
$.validator.setDefaults({
submitHandler: function() { alert("submitted!"); }
});
$().ready(function() {
$("#addrest").validate({
Hi
I submit data to a page and load content to a div by a ajax POST
request.
The response can contain new scripts to load and some which have been
already load by the main page load. The browser does not sort out
already loaded/cachedscripts because jquery adds an additional flag to
the url which
Hi everyone,
I have a problem with my validation on my form in IE (6 AND 7)
This is a part of my form:
boy
girl
My Validation script:
jQuery.validator.addMethod("defaultvalue", function(value,
element) {
return this.optional(element) || element.defaultValue !
I need to display a xml node attribute value in a cell. How can I do
it using the xmlmap?
I have XML like:
2
3
4
..
In the table's first cells I need to display
Arun Boppudi, 2, 3, 4
values respectively.
Hi,
Product page would like to load different contents in same div
For example :
Red product and Blue product
Default it loads red product and when u click on blueimage product
image and discription should load in the same div.
I hope I have conveyd my message clearly
Hello Everyone,
I am looking to see if I should switch to jQuery but first need to
find jQuery's equivalent to Prototype JS's Ajax.Updater; new
Ajax.Updater("id", url, {method: 'post', parameters: pars});
Ajax.Updater allows you to simply update the content of a DIV.
ps.
I did find his plugin
Eric,
I am having the exact same issue with your (excellent) simplemodal
plugin. Could you please post your original reply to the group to help
others with this same problem?
Many thanks.
On Mar 11, 4:36 am, Eric Martin wrote:
> Ricardo,
>
> I believe I responded to your email, please let me k
Hi,
I have been looking for an answer, but for the love of God, can't find
any solution.
I have the validator working perfectly on FF and Safari, but can't get
it to work on IE. It's giving me a serious headache, but I'm sure I'm
missing something obvious.
This is the page I'm talking about:
ht
Hi,
I'm sorry if this is a double post but I can't find the original one.
I'm having problems with jquery-validation on IE. It's working fine in
every other browser.
This is the page:
http://www.thecentroexperience.com/de/wellness/contest/28/
It should validate all the fields, but in IE it wo
Hi
I submit data to a page and load response content into a div using an
ajax POST request.
The response can contain new scripts to load and some which have been
already loaded by the main page. The browser does not sort out
already loaded/cached scripts because jquery adds an additional flag
to
Hi,
Switching content in same div which contains images and text.
As We see a product more views or red and blue
Default loads the red when u click on blue the image and description
changes. same when u click on red.
Help me out here
thanks
You right!
Quick question though! Do you know how i can make the script pass the
character i type to be passed to the php script which intend return the
search result matching the character in the textbox?
I have type done something like this;
echo "Operator"; in my php and that is all i see whe
Not sure if this might be related to your problem:
http://groups.google.com/group/jquery-dev/browse_thread/thread/6d3de70e6f2c6ebe/908edb7729c03a3c?lnk=raot
I'd suggest trying to add a LI to the UL using standard DOM methods:
var li = document.createElement('li');
li.appendChild(document.createTe
Yea the exact same thing happened to me although i think it works for
click events. I had the same problem in ie7 too though. i just decided
to use the old way of event bubbling to get around although the jquery
lot did say they know it has issues.
On Mar 11, 2:19 pm, Todd Rafferty wrote:
> I ha
I'm trying to pass arguments to a function that's called from within
anonymous function that acts as an event handler for the click event.
The problem is that once a thumbnail(gallery.images[i]) is clicked the
startSlideshow function gets the final iteration's values passed as
the arguments, inste
Those examples don't make any sense
the first one
$("example").html(data);
the input box will already be filled with the "data" (which keep in
mind is what the user selected)
the second one
data = $("example").text;
the value of "data" is what the user selected and will already be
inside th
How would one go about adapting this to be used with multiple lists on
one page.
I have 3-5 lists on each page and would only like to show the first 3
items of each with the ability to show the others.
On Feb 17, 5:16 am, mofle wrote:
> I'm using IE6 natively on an XP machine. jQuery 1.3.1.
>
I have done something like this;
$(document).ready(function(){
$("#example").autocomplete(
"test.php"
).result(function(a,data,c) {
// variable "data" has the value the user selected
$("example
you are assigning the html here to what's in data.
to access i think is data = $("example").text;
try this but breakpoint it in firebug, because in not using firefox right now.
Date: Wed, 11 Mar 2009 15:18:10 +
Subject: [jQuery] Re: AutoComplete
From: brightdad...@googlemail.com
To
1 - 100 of 151 matches
Mail list logo