This is a quick and dirty way to show you the basics of how you may
want to approach it. I wrote this off the top of my head, and will
leave positioning up to you, but the basic concepts should be there: http://dl.getdropbox.com/u/340087/Drops/09.25.09/lightbox-617a096a-225212.html
--
Scott
Hi,
I want a really simple hard coded lightbox.
Can some one teach me how to trigger a div in the center of page, if i
click the close button inside, it will close back up and if i click
somewhere outside the div, it will also close. I guess just that
simple as that.
Well...I'm a "self-taught", "learn-it-as-I-go", programmer.
So there are a lot of fundamentals that I probably don't know
that would be in the programming 101 class.
I was just speaking from the limited experience of changing a "post"
which was being used to just "get" some info from a query, to
"the method as "post", occasionally venturing to use "get" when just
retrieving data, just to see what might happen.nothing different. "
Wow, really? knowing the difference between GET an POST are pretty
fundamental things to know as a programmer
http://www.google.com/search?q=get+vs+post
It'
Hi, what I want is to use a IF statement on the mouseout function.
So based on the conditions it will use the fade out function when the
mouseout effect occures according to those conditions.
That means that the conditions are that if the mouse moved off the
menus background then as long
What happens if you set a solid background-color to the element that
holds the text?
On Sep 25, 3:08 pm, "Dave Maharaj :: WidePixels.com"
wrote:
> Thanks,
>
> Will give it a shot.
>
> Dave
>
> _
>
> From: Rick Faircloth [mailto:r...@whitestonemedia.com]
> Sent: September-25-09 9:48 PM
>
wow way to many of us jumped on that post at the same time
On Sep 25, 10:19 pm, "comslash.com" wrote:
> try
>
> $('input[name^=tx_qtde]')
>
> try this page for reference on selectorshttp://docs.jquery.com/Selectors
>
> Chris
>
> On Sep 25, 10:12 pm, Carlos Santos wrote:
>
> > I have in one form
try
$('input[name^=tx_qtde]')
try this page for reference on selectors http://docs.jquery.com/Selectors
Chris
On Sep 25, 10:12 pm, Carlos Santos wrote:
> I have in one form, many, many text fields with similar names such
> as:
>
> tx_qtde1
> tx_qtde2
> tx_qtde3
>
> how i can select all this t
$('input[name^=tx_qtde]')
See "Attribute Filters" at http://docs.jquery.com/Selectors
On Fri, Sep 25, 2009 at 7:12 PM, Carlos Santos wrote:
>
> I have in one form, many, many text fields with similar names such
> as:
>
> tx_qtde1
> tx_qtde2
> tx_qtde3
>
> how i can select all this text fields wi
http://docs.jquery.com/Selectors
Look at the Attribute filters.
Assuming they're all INPUT fields:
$("input[name^=tx_qtde]")
which means all input fields with NAME that begins with 'tx_qtde'
Otherwise you can just drop the 'input'
$("[name^=tx_qtde]")
but it'll look through all element types.
O
Pass in certain GET or POST data based on the request.
$("#DIV1...").load(some.php?id=dothis);
$("#DIV2...").load(some.php?id=dothat);
$("#DIV3...").load(some.php?id=monkeyseemonkeydo);
On Sep 25, 4:04 am, thodoris wrote:
> I am developing a webpage that is jquery powered. Many div-hotspots in
I have in one form, many, many text fields with similar names such
as:
tx_qtde1
tx_qtde2
tx_qtde3
how i can select all this text fields without using a class, something
like:
$("tx_qtde * ")
where the * is the numbers.
Thanks for your time.
Carlos Santos
The CSS visited is triggered by whether it's in the browser history.
Since they're not really adding an entry to the history, you'll
probably need a workaround. Perhaps saving the link ID (or session ID
to data elsewhere) in a persistent cookie, and changing the style of
the link based on whether
I haven't test this but its modified from another set of code i have
that is working to do this
var idNumber = 1;
function addElement(id){
if($('#span1').html()){
$('#span1').append($('#' + id + idNumber).clone());
$('#span1 #' + id + idNumber).attr('id',
Thanks,
Will give it a shot.
Dave
_
From: Rick Faircloth [mailto:r...@whitestonemedia.com]
Sent: September-25-09 9:48 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Prevent jagged text in IE
I include a reference to a file with this jQuery code in every page to solve
that
But what if there's already a #span2 in the document?
Perhaps it would be better to give it the ID span1_1 (or similar).
On Fri, Sep 25, 2009 at 6:31 PM, jan1979 wrote:
>
>
> Hello.
>
> I have following code:
>
> function addElement(id) {
> $(document).ready(function(){
> if ( $("#sp
I include a reference to a file with this jQuery code in every page to solve
that problem, Dave.
Best solution I've found so far. I got it from someone, somewhere, but don't
remember who.
Rick
jQuery.fn.fadeIn = function(speed, callback) {
return this.animate(
Make sure the text opacity is 100%. Don't fade it in. IE renders
non-antialiased text when opacity is less than 100%.
If that's not it, post a link to a test page.
-Mike
On Fri, Sep 25, 2009 at 4:56 PM, Dave Maharaj :: WidePixels.com <
d...@widepixels.com> wrote:
> I have content that loads in
I have content that loads into a div and in every browser except IE it
renders fine. In the wonderful IE it comes in jagged...sometimes it "snaps"
after and looks normal but for the most part its all jagged. The page is a
white bg with text rendering into of it. Howcan I fix this so it looks
normal
no, the problem I have is that I set a mouseout function from jquery
on the menus background.
This background is a box blue square. On this square is buttons that
once clicked takes you to different pages. These buttons are more
linke image links.
Well when the mouse moves over to the image link
Hello.
I have following code:
function addElement(id) {
$(document).ready(function(){
if ( $("#span1") ) {
$(id).clone().prependTo("#span1");
}
});
}
How can I rename cloned element? Should be fine to increase its name by one,
e.g.: o
Hang in there, Charlie!
My head was very bloody from banging it against the wall when I first
started
down the AJAX road. Now I'm finally getting some work done with it! I
almost
gave up several times.
fwiw, I have always used the $.ajax method without any problems and
typically specify
hi a1anm,
if it's a CSS property, you can always determine that without relying
on the deprecated $.browser object...
$(function() {
// Check for the property you are interested in. Will be a
Boolean value
var opera = typeof $("body")[0].style["OperaOnlyCSSProp"] ===
"undefined";
are you using the validate plugin? i'm not familiar with it at all,
but for a simple validation like this you could do:
// DOM-ready handler
$(function() {
// Listen for "onsubmit" events for the form
$("#signupForm").submit(function() {
// Get the checkbox
hey Shane,
Nick's comments above simply reinforce the need for explicit variable
declaration. ignoring the "var" keyword, even when picking names that
don't collide with properties of the window object, is a dangerous
practice. it leads to hard-to-spot bugs, scope issues, and a whole
mess of othe
I don't know how complex the user interface you're making, but if
you're asking for a callback after completing the "slideToggle()"
animation, then overload the method with a second argument which is
the callback function.
$('#51').slideToggle('fast, function() {
// Do something after element
I went through all the plug-ins pages last night. There are a good
deal, 10% maybe, that 404 or go to the wrong place. If I go in and
delete those, that is all I am going to be doing, deletes. Will these
be rolled back since I am only deleting? Should they even be
deleted? Should I
hi GonzoDesign -
this is a straight port. i'm not that familiar with mootools, so one
aspect that may be off is the selection of elements. i'm assuming $
('europe') returns the element with an ID of "europe" but if not
you'll need to change the ported selectors. you can read up on how
jQuery impl
The timeout sounds logical. I would like to try it, but somehow jquery
does not know that function:
http://docs.jquery.com/Special:Search?ns0=1&search=setTimeout&go=
I am pretty new to jquery. Could you post some code that fits into
this one:
onmouseover="$('#51').slideToggle('fast');$('.subcateg
it looks like you have an extra $ inside your wrap method, and you
also may need to add the . And it looks like your code may need to
account for the space between the href and class attributes.
something like:
$(this).wrap('')
On Sep 25, 1:44 pm, casperMC wrote:
> hi,
>
> im trying to wrap a
can you post a snippet or test page of how you're using the load
method? it's really hard to figure out why it might not be working
without any code samples.
On Sep 25, 5:07 pm, rodeored wrote:
> How do I get the callback for load() to wait until the load is
> complete?
What do you think about getJSON for simple "is username available"
type checks?
I'm thinking, go with the simple and more compact method. Return your
errors in JSON and parse them out.
Since these are just quick "exists in database" lookups, the chances
of failure are low. If they do fa
$.getJSON is a convenience/wrapper method around the $.ajax call... so
is $.getScript and $.get and $.post
just open up the unpacked version of jQuery and search for "getJSON"
and you'll see this first hand
On Sep 25, 3:07 pm, Charlie Griefer wrote:
> Z: thanks for the response. I'm making my
Hello,
I have a problem with safari behaving weird with a custom Slider I'm
making, what it does is like reseting the scrollTop value to 0 when
jumping from one item to other making the animation look pretty bad,
the behavior in FF is as expected.
The code is here:
http://pastie.org/630593
Ch
I know this is sloppy code, I'm more of a HTML and CSS person than
JavaScript person. The thing is this code does exactly what I need it
to do. This is done with mootools and it conflicts with some other
jQuery things going on, on the page. I would REALLY appreciate any
help anyone could give me.
I use $.post like so:
$.post("http://mydomain.com/some/webservice";, $.toJSON({ emailAddress:
emailAddress }), callback, "json");
this works great..the response of the POST is a json string and that
is used in the callback..now I added https:
$.post("https://mydomain.com/some/webservice";, $.to
It should be noted that you are able to pass in jQuery objects to html
() (and probably the others append() ...)
Z: thanks for the response. I'm making my initial foray into using jQuery
for AJAX (up 'til now, had only used it for page manipulations).
Given your response... would there ever be a situation where .getJSON()
would be preferable to .ajax()? It seems odd that jQuery would have 2
methods that es
I'd suggest using the more generic $.ajax method so you can actually
catch the error, as the $.getJSON fails silently, which is no good for
programmers :-(
$.ajax({
type: GET,
url: "your URL",
processData = true,
data: {},
dataType: "json",
success: function(json) {
Anyone know how to contact the author of this plug in?
Every time I try to send him a question on his site form, it says it
was rejected as spam.
Or are there any other experts on this plugin out there?
I need to figure out how to reverse the replacement that happens when
the quicktime controll
Hey all:
I've read the docs and googled the heck out of this, but not seeing what the
problem is.
I'm trying to get some data from the server via the getJSON() method. I do
see a response in firebug and I've validated the response data at
JSONLint.com. However, the callback function simply will
I'm using jquery.embedquicktime.js to play an mp3. Sometimes I have a
dozen different mp3s on a page. When a user clicks on the graphical
play button, the button is replaced with the Quicktime controller bar.
This is all expected behavior.
Since the link doesn't actually go anywhere, the link doe
On 25 sep, 13:13, Bertilo Wennergren wrote:
> MartinBorthiry wrote:
> > I'm trying to do this:
>
> > $(document).resize(function(){alert('yea')});
>
> > but doesn't work on firefox or chrome, only work fine on IE (WTF!)
>
> > I'd tryied $('body').resize... but happen the same.
>
> > $(
Couldn't get this to work but am using jquery.embedquicktime.js and it
seems to help. Thanks.
On Sep 25, 7:26 am, Mike Alsup wrote:
> > My ideal solution would be a list of song titles and a play button.
> > When the user clicks the play button, the quicktime play is revealed
> > below the title
Thanks. I actually don't want to use Flash at all since it is not
iPhone compatible, but thanks.
On Sep 25, 7:32 am, allenm541 wrote:
> Actually, after reading over your post again, it looks like what you
> need is to set autoBuffering: false
> autoBuffering: false will prevent the media from lo
Hi,
I want to use jquery slideshow. I have a side menu bar with 15
different options. When I choose an option from menu bar, different slide
shows must appear in the same div.
I would really appreciate if any body can help me with this.
Shravan.
Hello all,
I have a form that opens up in a lightbox (shadowbox to be exact).
And I'm having a heckuva time to get the form in the iframe to submit.
i'm using the submitHandler option within the validate plugin like so:
submitHandler: function(form) {
form.submit();
How do I get the callback for load() to wait until the load is
complete?
sorry just to clarify, the problem CAN still emerge even if you view a
prettyPhoto image first, before entering a caption. if you do this,
then enter several captions and try to view photos again, it still
breaks (sometimes it gets into a weird loop even whereby the first
click tries to open the p
Just to add a bit more detail: my current setup as of right now is
still using the jEditable plugin combined with the prettyPhoto image
viewer plugin (which i believe is based on lightbox). exactly what
happens with this combination of plugins is:
1. if you enter a caption and save it (jeditable
Hi,
i have a site that uses a lightbox based image viewer and the
jeditable plugin. basically my site has a photo gallery and below each
gallery i have the option to set a caption to the photo. i have done
the caption using jeditable and i've also tried using the ajaxForm
plugin for jquery to see
On Sep 25, 2009, at 11:56 AM, Bertilo Wennergren wrote:
Karl Swedberg wrote:
Internally, jQuery determines whether to use document.createElement
by checking the string against a regular expression:
rsingleTag = /^<(\w+)\s*\/?>$/
Unless I'm missing something, allowing for both syntaxes wo
MartinBorthiry wrote:
I'm trying to do this:
$(document).resize(function(){alert('yea')});
but doesn't work on firefox or chrome, only work fine on IE (WTF!)
I'd tryied $('body').resize... but happen the same.
$(window).resize work fine but i need to detect when the body's
height ha
Jeff wrote:
I realize that the text() function is returning text, and not the
nodes within. How can I return the nodes within, either as a jQuery
object or the DOM nodes themselves, rather than the text, so I can
actually parse them?
The basic problem is probably that there are no nodes with
I am developing a webpage that is jquery powered. Many div-hotspots in
the page is ajax powered and they should update dynamically. For
example
number of ratings
average rating
number that a video is favoured
Now i am doing this:
$("#DIV1...").load(some1.php);
$("#DIV2...").load(some2.php);
$("#D
hi,
im trying to wrap a fancybox link around each image on a site, which
has an alt tag specified.
Right now i have this html markup:
And this javascript-code:
$(document).ready(function() {
$("img[alt]").each(function(){
$(this).wrap($(''));
});
$(".fancyBoxImage").
Hello,
I've looked at a couple of tutorials focused on having some sort of
clickable elements that emulate tabs - hiding all but the div
associated with that element. Both of those tutorials focus on adding
IDs to the elements involved and a handler for each. This is rough on
a web app that is de
I am trying to do an slidedown menu with hover function:
Javascript:
Code:
$(document).ready(function(){
$("#rightmenu ul li").hover(
function () {
$(this).find("ul:first").stop(true, true);
$(this).find("ul:first").slideDown();
},
function () {
evo wrote:
Everytime I post to this group through thunderbird, I get a
undelivered mail message sent back, everytime.
This has only started happening recently and I can't find any info
about it anywhere.
Just want to know if this is happening to anyone else (as it's only
when I post to this gr
Karl Swedberg wrote:
Internally, jQuery determines whether to use document.createElement by
checking the string against a regular expression:
rsingleTag = /^<(\w+)\s*\/?>$/
Unless I'm missing something, allowing for both syntaxes would be
trivial. Just change the regex to something like
Vincent Robert wrote:
> On Sep 24, 6:33 pm, Bertilo Wennergren wrote:
>> I think I read somewhere that jQuery just passes the
>> code along to the "innerHTML" function of the browser.
>> That would mean that the actual rules are those of the
>> browsers' various implementations of "innerHTML" (
On Sep 25, 2009, at 10:21 AM, Vincent Robert wrote:
Actually, jQuery does some parsing by itself first.
The $('') syntax is actually a shortcut to
document.createElement("span"), and yes, the "/" is required here.
So $
('') will be faster than $('') which will have to
go through innerHtml.
there is probably some way of doing it server-side and automatically
giving the user a link to that, but not in jquery as far as i know
file I/O stuff in javascript pretty much relies on being run on
localhost too, is this for an Air app?
On Sep 25, 3:45 pm, chiru wrote:
> Hi friends,
>
Hi friends,
I need to convert images(.gif/.png) into PDF format in
javascript. Can we do that using jQuery. Is there any plugin to solve
my problem.
the problem with jquery animation effects is that you can easily chain
effects on a single element, but unless you specify a timer of some
description or utilise the callback, effects on different elements
will execute simultaneously as you're finding.
unfortunately you really aren't going to kno
Are you wanting to just hide the anchor element for link 4 but keep
links 4a to 4c visible? Here's a quick example of that scenario:
$(function()
{
$("ul#nav li ul").each(function(i)
{
$("a:first", $(this).parent()).hide();
the problem with jquery animation effects is that you can easily chain
effects on a single element, but unless you specify a timer of some
description or utilise the callback, effects on different elements
will execute simultaneously as you're finding.
unfortunately you really aren't going to kno
Actually, jQuery does some parsing by itself first.
The $('') syntax is actually a shortcut to
document.createElement("span"), and yes, the "/" is required here. So $
('') will be faster than $('') which will have to
go through innerHtml.
Regards,
On Sep 24, 6:33 pm, Bertilo Wennergren wrote:
great!!
Many thanks Karl!!
Vitto
On 25 Set, 15:45, Karl Swedberg wrote:
> Hi Vitto,
>
> Add these declarations to your ul#mainNav rule (main.css, line 149)
>
> position: relative;
> z-index: 50;
>
> For IE, you'll probably also need to add these to div#content
> (main.css, line 26)
>
>
Hi Vitto,
Add these declarations to your ul#mainNav rule (main.css, line 149)
position: relative;
z-index: 50;
For IE, you'll probably also need to add these to div#content
(main.css, line 26)
position: relative;
z-index: 1;
--Karl
Karl Swedberg
www.englishrules.com
hello:
I'm trying to do this:
$(document).resize(function(){alert('yea')});
but doesn't work on firefox or chrome, only work fine on IE (WTF!)
I'd tryied $('body').resize... but happen the same.
$(window).resize work fine but i need to detect when the body's
height has been changed by
Hi Nalum,
It's pretty straightforward. Instead of doing this:
$.fn.pluginname = function(args) {
};
You can do this:
$.pluginname = function(args) {
}:
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Sep 24, 2009, at 10:59 AM, Nalum wrote:
Hello All
Hi Grimace,
You should get what you're trying to find by wrapping value in a
. Try this inside the success callback:
var $value = $(' + value + '');
var body = $value.find('body');
var form = $value.find('form');
var p = $value.find('p'); // Actual paragraphs
--Karl
__
Not having looked at the plugin, this is just a guess, but the problem
might be occurring because you have a repeating background.
Try changing this line in your CSS:
background:url(../gfx/btn_navbg.jpg) 0px 0px;
to this:
background:url(../gfx/btn_navbg.jpg) no-repeat 0 0;
--Karl
Nice one! Thanks for posting this. Chances are good that if you ran
into the problem, someone else has, too.
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Sep 25, 2009, at 2:38 AM, boermans wrote:
We noticed an issue with the jquery.linkselect plugin (
Hi David,
You can combine events with a space in the first argument
of .bind(): .bind('type1 type2 type3', function(event) { /*do
something*/});
Pass the event object into the anonymous function and then determine
which event was triggered with event.type. Here is an example:
$('a#cursor'
ya its nice..useful one..
Anything other then this...
For india supportable one...
On Fri, Sep 25, 2009 at 5:33 PM, Anthony Brown(Worcester Wide Web) <
anth...@worcesterwideweb.com> wrote:
> http://www.zeepmobile.com/
>
>
>
> bharani kumar wrote:
>
> Hi All ,
>
> If any one know free sms gatew
does nobody have an idea? :-(
On Sep 23, 5:13 pm, Merlin wrote:
> Hi there,
>
> I am building huge list with subcategories in each category that fade
> out once the mouse is placed over the category. It works great, BUT
> the problem is, if your mouse goes down the list vertically and the
> su
Thanks Liam, worked great!
And thanks to all for the approach.
>
> evo wrote:
>
> Everytime I post to this group through thunderbird, I get a
> undelivered mail message sent back, everytime.
> This has only started happening recently and I can't find any info
> about it anywhere.
>
> Just want to know if this is happening to anyone else (as it's only
> when I
been getting same thing from same "ekster" domain , also when using
Thunderbird. The first time it happened a week or 2 ago the messages it
told me couldn't be delivered were 2 months old, now sends back current
messages very strange
evo wrote:
Everytime I post to this group through th
Fabian,
Here's the js:
$(document).ready(function() {
$.ajax({
type: "GET",
url: "sample.xml",
dataType: "xml",
success: function(data) {
$(data).find('item').each(function() {
http://www.zeepmobile.com/
bharani kumar wrote:
Hi All ,
If any one know free sms gateway server,
Please share the details ,
Thanks
Thanks Ryan for the alternative,
However, I need to do the following now (see message above your last
post):
I need to highlight *only* the top-parent item (the same one I just
ran 'return false;' on) with the class 'nav-selected'.
Any idea how I could do that?
Thanks,
osu
On Sep 25, 11:1
Hi All ,
If any one know free sms gateway server,
Please share the details ,
Thanks
Actually, after reading over your post again, it looks like what you
need is to set autoBuffering: false
autoBuffering: false will prevent the media from loading until the
play button it presses. It differs from autoPlay: false which simply
prevents it from player, but buffers anyhow.
So, your c
> My ideal solution would be a list of song titles and a play button.
> When the user clicks the play button, the quicktime play is revealed
> below the title and ONLY at that moment does the file start
> downloading.
If you are using the media plugin then just invoke "media" on the
desired eleme
Actually, what I think you're looking for is the Flowplayer option
autoBuffering, which differs from autoPlay. autoPlay determines
whether or not the video will play automatically, but autoBuffering is
a different method that will prevent it from buffering as well.
You'll have to learn how to se
> > Yes, same problem I posted yesterday... funny we both hit it this
> > week. hopefully someone can help?? I know the author of blockUI
> > says he monitors this forum...
Hmm, anyone have any ideas for how to force IE to honor the new cursor
style without having to move the mouse? One that
I think I can help. What I suggest is that you become familiar with
free and excellent Flowplayer and use it to embed your media files.
Here is a link: http://flowplayer.org/
Flowplayer has lots of tools for scripters and jQuery developers. It
has two methods that I've found that may be of use
Hi, i've a problem with input radio validation.
I've two radio (accept and don't accept) for the privacy and obviously the
users have to click "accept".
Here my code:
$("#formContactPage").validate({
errorLabelContainer: $("p.error"),
rules: {
d
I'm using one of the examples from the demo files as a template.
Basically I'd like to auto suggest hospitals based on the zip code
that's entered from another input. Can someone recommend how do
accomplish this? TIA
This is the local data set:
var hospitals = [
{ name: "hospital 1",
I've run into this problem many times as well. The issue is that your
click function is being bound more than once. To fix it, use
the .unbind() method. .unbind() without any parameters will unbind
everything bound to that element, including your .click() function.
However, if you wish to unbin
Hi all,
I'm new jquery. I'm trying to create a photo gallery/slideshow using
the cycle plugin. There will be three elements, a large graphic, a
text section, and a thumbnail gallery of the large graphics. I have
the large graphics and thumbnails connected (so when you click on the
thumbnail the c
how to get post data from a page loaded in iframe in parent page
Everytime I post to this group through thunderbird, I get a
undelivered mail message sent back, everytime.
This has only started happening recently and I can't find any info
about it anywhere.
Just want to know if this is happening to anyone else (as it's only
when I post to this group)
This is
Not at the moment, sorry
Dave Buchholz
On Sep 25, 12:51 am, Loony2nz wrote:
> do you have an example of this somehwere? I think I could use this
> for upcoming forms I have in my pipeline.
>
> Thanks!
>
> On Sep 1, 10:33 am, Dave Buchholz - I-CRE8 wrote:
>
> > Got it, this code onfocusout: fu
Hi
i'm using the cycle plugin below a dropdown. Problem is that the"
dropdowns" stay behind the slideshow. They have position absolute and
higher z-index than the slideshow.
Any solution?
http://www.francesconizzola.it/_demo/
Thanks Vitto
if i'm reading your question right, on the menu button's mouseover
function you could call $('#menu').stop() to end any animation
effects.
http://docs.jquery.com/Effects/stop
copy paste some code in jsbin.com if you can, it's always easier to
sort stuff like this with code to look at.
On Sep 25
if i'm this right, on the menu button's mouseover function you could
call $('#menu').stop() to end any animation effects.
http://docs.jquery.com/Effects/stop
On Sep 25, 4:55 am, "shyhockey...@gmail.com"
wrote:
> Hi, I am using the fade in and fade out and mouse over and mouse
> out.
>
> What
1 - 100 of 105 matches
Mail list logo