Hi commarts,
When you are writing script to open top right slider , at the same time you
need to add script
to close bottom slider in the same script.
Hope you get it.
Cheers.
On Wed, Mar 25, 2009 at 1:35 AM, commarts wrote:
>
> Friends,
>
> I have two sliders on the page. One at the top right
RIght now I have a page that has a search box that uses the
autocomplete plugin. When the form is submitted using the ajaxForm
plugin, the server sends back HTML code with jQuery mixed in. This
seems to work alright in Firefox, but in IE the javascript goes
unnoticed. The results are sometimes unp
Hey,
I just saw this cool project called Canvas-photo and I was wondering
if anyone was working on a jquery version (plugin)?
Thanks
Daniel
http://code.google.com/p/canvas-photo/ [code]
http://www.ernestdelgado.com/public-tests/canvasphoto/demo/canvas.html
[demo]
I've just finished writing a jQuery cheat sheet which is available for
free download in pdf format.
I've have put hours of work in to gathering together information from
different tutorials and other sources to write this document.
It is organized around the jQuery API for easy reference.
You c
You might wan't to post this in the UI group..
http://groups.google.com/group/jquery-ui
You could, also, just add / remove your own 'active' class pretty
easily.
On Mar 24, 10:32 pm, MorningZ wrote:
> it's definitely possible, but would require going through the js and
> theme css and changing
nice, i should have tired that i guess. still learning
i got it woring just as i wanted thank you
On Mar 24, 10:32 pm, "comslash.com" wrote:
> Mathew,
>
> I believe you can set the value to null or 0 to not have the request
> time out ... but you may want to implement something on error instead
Yeah, but I've seen the same thing in my code, and it turned out I
wasn't calling the 'foreach' properly.
Look at the response you are getting from the server (I'm assuming
ajax) or look for a tag not closed properly or something.
Posting code or link is the only way we can help here.
On Mar 24,
$(function() {
$(".search-options li").click(function() {
$(this).addClass("selected").siblings().removeClass("selected");
return false;
});
});
User ID
mikode
Search Contact by
- Richard
On Tue, Mar 24, 2009 at 12:40 PM, mdjamal w
If you could supply a link to the page so we could check the code it
would help enormously.
KathyW.
Mathew,
I believe you can set the value to null or 0 to not have the request
time out ... but you may want to implement something on error instead
of this to say attempt the search again x times then print msg server
is busy or something along those lines.
On Mar 24, 10:51 pm, Mathew wrote:
>
Currently I am working on an entry form that I've realized has become too
long and would like to break up using Tabs. My current form uses tables
(yes I should use divs but I'm still used to tables) and I thought I could
just put in child tables inside the divs used by Tabs. I've come to
discover
i am using jquery ajax to load search results of a page. and am having
a hard time finding an answer to this question regarding my timeout
time
i have jquery set to timeout 5000 before doing the success functions.
i have noticed on my less than reliable connection that sometimes it
takes longer th
Hi
You are not placing the # in front of the form id as jquery requires.
I do that all the time!!!
On Mar 24, 12:26 pm, Zach wrote:
> I've tried to get this to work for the past 4 hours and I'm stuck.
>
> I've got a master page with the following scripts added.
>
>
>
>
> this is the f
Thanks, guys. After all, I gave up on jscript solution and added a
switch adding jscript to the header on a php level
On Mar 23, 11:44 pm, Peter Edwards wrote:
> Are you using joomla to load jQuery? or are you wringin script tags in
> some sort of template?
> I came across
> this:http://www.pac
it's definitely possible, but would require going through the js and
theme css and changing the class name
so why would this be important to do?
On Mar 24, 9:21 pm, BigFisch wrote:
> I was wondering if there was a way to rename the class when something
> is "active".
>
> Is it possible to defi
Sweet!!!
thanks Steven that is exactly what I was talking about (sorry if I
have been confusing on my former explanation).
Have a good 1!
On Mar 24, 7:01 pm, Steven Yang wrote:
> i think what macsig means is
> his arrays are like
>
> var a =[array a]
> var b = [array b]
>
> if thats the case
>
ahhh, i moved the script to the top and made id (document).ready
and although it still shows in the response but at the top i am
getting results.
thanks a bunch! i need to clean it up alot but as long as i am
getting results on screen im good.
hey man thanks for your time and consideration g
I've noticed in your AJAX response (view via Firebug), you have a
whole load of other stuff at the bottom of the response.
If you're inserting into a table, your response should begin with
, and end with .
But you have a whole load of other things like tags. This
would make invalid HTML and would
i think what macsig means is
his arrays are like
var a =[array a]
var b = [array b]
if thats the case
you might want to do
var arrays = {
'a' : [array a],
'b' : [array b]
}
then when select changes and you get the value
you can get your array with
var myArray = arrays[val];
yeah i was needing to do that was just putting it off until i got the
response through, thanks. but still no luck. arggg it did work at
one point im not sure what to say this is an odd problem
On Mar 24, 8:44 pm, James wrote:
> Try changing:
>
> to:
>
>
> and use:
> jQuery("#searchresults").
How does your array look like?
Do you mean like:
var selected_value = $("#dropdown").val();
var myVar = myArray[selected_value];
???
On Mar 24, 3:30 pm, macsig wrote:
> Hello guys,
>
> I have a drop-down menu with 2 values ("a" and "b") and I have on my
> script 2 arrays ("a" and "b").
>
> Is
Try changing:
to:
and use:
jQuery("#searchresults").append(r);
See what happens.
On Mar 24, 3:33 pm, Mathew wrote:
> yes whetehr slideup/down is there is the same issue. the page is up at
> -> http://undergroundinnertainment.com/2009/index.php?option=com_usersea...
> thank you for your time
yes whetehr slideup/down is there is the same issue. the page is up at
->
http://undergroundinnertainment.com/2009/index.php?option=com_usersearch&Itemid=75
thank you for your time also.
the response i get for example of a search is:
pracycepaulsboro, nj | Is located: 7.78 From: 19146 | Artis
Hello guys,
I have a drop-down menu with 2 values ("a" and "b") and I have on my
script 2 arrays ("a" and "b").
Is there a way to select an array according to the drop-down value. I
mean if I store in a variable the selected value
var selected_value = $("#dropdown").val();
is there a way to re
Add a 'return false;' to the callback function for your click event.
This tells it not to perform the default action of clicking the
link.
On Mar 24, 3:27 pm, kevinm wrote:
> I have a vertical scrolliing area and inside the first area I have an
> link that when clicked calls scrollto to scroll
I have a vertical scrolliing area and inside the first area I have an
link that when clicked calls scrollto to scroll the main vertical
area.
What is happening is that the link is jumping to the link, then it
scrolls.
Any thoughts
Thanks
Kevin
When debugging, try to remove the slideUp and slideDown stuff.
What does the HTML for the AJAX response look like?
If possible, could you set up a online demo page demonstrating the
issue?
On Mar 24, 3:21 pm, Mathew wrote:
> yeah i need to get in the habit of chaining more thanks. i tried your
I think you have to use .each and loop through all the divs and gather the
information and then send the information once at the end with $.ajaxor
otherwise you might end up with one $.ajax call for each div
I was wondering if there was a way to rename the class when something
is "active".
Is it possible to define this in a parameter?
Instead of "ui-state-active", I'd like it to use "active"
yeah i need to get in the habit of chaining more thanks. i tried your
way but nothing. r contains my response but for some reason it will
not load into that div
i am completely clueless as to why it would nto load into the div i
have no idea anyone help thanks
On Mar 24, 7:42 pm, James wrote:
Try replacing this line:
var $links = $('#artistsColumns a').attr('rel');
with:
var $links = [];
$.each($('#artistsColumns a'), function() {
$links.push( $(this).attr('rel') );
});
$('#artistsColumns a').attr('rel'); only gives you one string value,
thus it will only preload one url.
I made
Here's the simple general idea (untested):
var count = 10;
var timer = null;
function countdown() {
if (count >= 0) {
count--;
$("#time").text(count); // update count
}
else {
window.clearInterval(timer); // stop the timer
location.href =
Have you tried:
jQuery("#searchresults").slideUp(function() {
jQuery("#searchresults").html(r).slideDown();
});
Also for form elements, instead of doing:
var name = jQuery("#search").attr('value')
You can simply do:
var name = jQuery("#search").val();
On Mar 24, 2:33 pm, Mathew wrote:
>
What do you mean by "dynamically updated"? Could you show an example
of how and where it's dynamically updating the variable content?
On Mar 24, 2:12 pm, Ramyak wrote:
> But $data is dynamically updated, so I was wondering if there is any
> function that escapes the special characters on the fly
Thanks buddy
On Mar 24, 4:35 pm, Karl Rudd wrote:
> Sure. Bind a "change" handler to the select.
> Seehttp://docs.jquery.com/Attributes/valfor more details.
>
> Karl Rudd
>
> On Wed, Mar 25, 2009 at 9:35 AM, macsig wrote:
>
> > Hi guys,
> > Is there any way to achieve with jQuery the same goal
i had this working at one point but was still cleaning up the php. and
now it wont load my entries at all using html()
i see the response from success in firebug console and if i use text()
it loads the html code in the div i assign but when using html() to
render results it does not load anything
i forget...this problem is just in Firefox 3.0.7
On Mar 24, 7:16 pm, pedalpete wrote:
> The message means that there isn't enough data in the cycle for it to
> cycle through.
> Likely you are only loading your cycle wrapper once, but you didn't
> include any code or a url, so it's tough to tell.
You know those sites that have the "Your download will begin in 10
seconds" - and then it brings up a download window?
How could you do that with jQuery - I've been trying several methods
with the ajax functions and php headers
Any ideas out there?
Joel
Hi, but im doing... i have a foreach with php for load the images, in
the home pages i got the message, but in the another part to the
website is fine...
On Mar 24, 7:16 pm, pedalpete wrote:
> The message means that there isn't enough data in the cycle for it to
> cycle through.
> Likely you a
But $data is dynamically updated, so I was wondering if there is any
function that escapes the special characters on the fly.
Thanks,
Ramya
On Mar 24, 4:51 pm, James wrote:
> This is basic programming...
>
> If your string is wrapped in single-quotes, and the content of your
> string contains s
Just get the HTML and prepend it.
$.get("last-10-twitts.php", function(data) {
$("#twitts").prepend(data);
});
On Mar 24, 5:11 am, introvert wrote:
> Hello.
>
> I have a simple twitter shoutbox on my website that I would like to
> refresh with jquery each X seconds.
>
> At the moment I us
This is basic programming...
If your string is wrapped in single-quotes, and the content of your
string contains single-quotes, you have to escape them:
$data = 'Hey welcome to webpage, \'Enjoy\'';
or you can use double-quotes to wrap the string:
$data = "Hey welcome to webpage, 'Enjoy'";
On Ma
This sounds more like a server-side issue. Are you running into high
load issues on your database, or some kind of connection limit?
Every AJAX request is just a single request and are completely
separate of each request and the page that it's called from.
Do you have some kind of demo page that w
Does anyone know of any jQuery/javascript trickery that can help with
positioning a div over a quicktime movie? So far, I found found that
it is not possible. But, it seems that there has to be some way to do
this!
Has anyone done this before?
Sure. Bind a "change" handler to the select. See
http://docs.jquery.com/Attributes/val for more details.
Karl Rudd
On Wed, Mar 25, 2009 at 9:35 AM, macsig wrote:
>
> Hi guys,
> Is there any way to achieve with jQuery the same goal of prototype
> helper "observe_field".
>
> I have a drop down me
If you click 'More Options', there's a 'Remove' option to clean out
the unwanted copies.
On Mar 24, 5:59 pm, iskills wrote:
> Hey everyone - so sorry for the multiple "Ticket Messages" there - I
> set my Google Group settings to single emails - and the email on this
> account goes to our help ti
Anyone?
On Mar 23, 2:08 pm, Nic Hubbard wrote:
> I seem to be having issues with getting link mode to work with Ariel
> Flesler's preload plugin. I have a hidden menu, which shows a hidden
> div when you mouse over a nav item. This then shows a list of names,
> and I am using the preload plugi
The message means that there isn't enough data in the cycle for it to
cycle through.
Likely you are only loading your cycle wrapper once, but you didn't
include any code or a url, so it's tough to tell.
Hi, Cycle Plugin is great!!, but i have a problem, in my home pages
firebug say: [cycle] terminating; too few slides: 1
but in another sections of my website Cycle Plugin work great!!.
The images, im loading from database with a while
Anybody know about this msg?
thanks
I have a website where I pull a lot of different pages into one CMS
page. The problem is the loaded page will occasionaly say "No database
selected". But if I click the link and load the page again the content
will show correctly.
Is there a way to check if connection has been made or a way to de
Ah, missed that, thanks.
--John
On Tue, Mar 24, 2009 at 6:34 PM, Matt Quackenbush wrote:
> John,
>
> I'm not the "offender", but he did apologize and explain.
>
> http://groups.google.com/group/jquery-en/browse_thread/thread/c661f1f17c5d374b
>
> HTH
>
>
> On Tue, Mar 24, 2009 at 5:28 PM, John
I love this place.
Thanks so much everyone.
My coding practises just shifted :)
Steve
On Mar 25, 5:55 am, MorningZ wrote:
> To build on James reply
>
> Using more CDNs allow your user's browser to download more
> simultaneously
>
> http://developer.yahoo.com/performance/rules.html#cdn
>
> On
On Mar 25, 5:26 am, Carl Meyer wrote:
> Using the (awesome) Cycle plugin all over the place, and I have a
> question: in the uncompressed code file [1], a comment says that the
> second argument to .cycle() can be "the name of an fx (only used in
> conjunction with a numeric value for 'options'
I cannot get this to work for the life of me. The validation works,
if you a user fails to enter in a required field it alerts them to
that. However; when a user submits a complete form it send it to my
email properly but does not display the success text? Is it my PHP or
jQuery that's wrong?
The issue is that once you bind a click handler on existing elements,
it will not take effect on elements added in the future. You can re-
bind it again once you added the new content, or you can use jQuery's
live() function in place of click() to have elements added in the
future to also have the
The jQuery UI branch of the autocomplete plugin supports a
source-option as an alternative to the url- und data-options. Give it
a try and let us know if it works for you:
http://jquery-ui.googlecode.com/svn/branches/dev/autocomplete/
http://jqueryui.pbwiki.com/SelectComboboxAutocomplete
Jörn
On
Hi guys,
Is there any way to achieve with jQuery the same goal of prototype
helper "observe_field".
I have a drop down menu and I wish to change some text according to
the selected value.
Thanks
Custom method must return a result instantly, and don't support
callbacks as required for Ajax calls. For that, use the remote method:
http://docs.jquery.com/Plugins/Validation/Methods/remote#url
Jörn
On Tue, Mar 24, 2009 at 3:26 PM, Mr J wrote:
>
> dear all,
>
> i'm working with jQuery validati
John,
I'm not the "offender", but he did apologize and explain.
http://groups.google.com/group/jquery-en/browse_thread/thread/c661f1f17c5d374b
HTH
On Tue, Mar 24, 2009 at 5:28 PM, John Resig wrote:
>
> Uhhh... why were there like 30 of these submitted to the mailing list?
> Your email address
Uhhh... why were there like 30 of these submitted to the mailing list?
Your email address has now been banned. Please contact me off-list if
you wish to rectify the situation.
--John
On Tue, Mar 24, 2009 at 5:45 PM, InfiniteSkills Support Center
wrote:
>
> This message is to notify you that y
Using FF3, I see white lettering for your menu. In only FF3 (didn't
happen in IE6), the menu doesn't seem to be expanding downwards as
expected. It gets cut off about 10px down.
I tried setting the moduletable class 'overflow' to 'auto' and that
fixed it. It's currently set to 'hidden' right now.
> Using the (awesome) Cycle plugin all over the place, and I have a
> question: in the uncompressed code file [1], a comment says that the
> second argument to .cycle() can be "the name of an fx (only used in
> conjunction with a numeric value for 'options')". I've tried this (to
> trigger a manu
Hey guys,
I'm using jquery + autocomplete plugin (by Jörn) and I trying to make it
work with DWR(http://directwebremoting.org/). My problem is that jquery
autocomplete takes a url or data directly, but to make DWR works properly, I
must use their javascript functions and handle the callback. Here
Hey everyone - so sorry for the multiple "Ticket Messages" there - I
set my Google Group settings to single emails - and the email on this
account goes to our help ticket system. Turned off emails from the
group now - no more ticket Spam!
*ashamed*
This message is to notify you that your ticket has been submitted.
Ticket ID: 1758-5724031711
Message:
--
Add the {async:false} option to your $.get. This tells JavaScript to
wait for the response before continuing with the rest of the script.
By default, AJAX is
This message is to notify you that your ticket has been submitted.
Ticket ID: 1754-3524031711
Message:
--
OK - let me please preface this by the fact that I am now 12 hours
into jQuery, with a pretty basic Javascript understanding, and years
of PHP work. I could
This message is to notify you that your ticket has been submitted.
Ticket ID: 1757-5724031713
Message:
--
Friends,
I have two sliders on the page. One at the top right, and one at the
bottom right. I would like for them to work together. When one slider
opens th
This message is to notify you that your ticket has been submitted.
Ticket ID: 1749-6724031752
Message:
--
Hello,
I have a 3-level menu using Superfish. I would like to hover over the
top-level menu item and have BOTH the 2nd and 3rd-level menus open
automaticall
This message is to notify you that your ticket has been submitted.
Ticket ID: 1753-3824031710
Message:
--
OK, this is what I have.
Multiple lists that I can collapse and expand.
What I want is for them to only show x amount of items until I expand
them.
Say x
This message is to notify you that your ticket has been submitted.
Ticket ID: 1755-7024031711
Message:
--
I am kinda confused, and stranded.
If i create dragables with clones and drag them into a connected
sortable i can't find a way to get/interact with the obj
This message is to notify you that your ticket has been submitted.
Ticket ID: 1752-2524031710
Message:
--
dear all,
i'm working with jQuery validation to validate the fields in a form.
in this form i have also the captcha (the check is verified through
ajax).
ch
This message is to notify you that your ticket has been submitted.
Ticket ID: 1750-2224031709
Message:
--
I'm just getting to know jQuery. The basic tutorial (http://
docs.jquery.com/Tutorials:How_jQuery_Works ) fails to mention that $
is used as a shortcut for
This message is to notify you that your ticket has been submitted.
Ticket ID: 1751-7724031710
Message:
--
dear all,
i'm trying to implement the captcha in a form where i'm using jquery
validation and also custom validation methods.
this is the code i have so far:
This message is to notify you that your ticket has been submitted.
Ticket ID: 1756-5324031713
Message:
--
Hi, I am new to jQuery, and it seems the very first thing I try to do
gives me problems. However, probably I am missing something so let me
ask you if you ca
This message is to notify you that your ticket has been submitted.
Ticket ID: 1747-5424031751
Message:
--
hello,
first off, amazing! thank you for your great work.
most every part is working for me, including using background images.
when the mouse hovers, the
This message is to notify you that your ticket has been submitted.
Ticket ID: 1746-5224031743
Message:
--
Friends,
I have two sliders on the page. One at the top right, and one at the bottom
right. I would like for them to work together. When one slider opens t
This message is to notify you that your ticket has been submitted.
Ticket ID: 1748-7424031751
Message:
--
I have the following code:
$('#r_0_0').blur(function() {
var x = $('#r_0_0').val();
var y="#d_0";
$(y).empty();
$.get("apps/P5001/call/LineItems.las
This message is to notify you that your ticket has been submitted.
Ticket ID: 1743-5624031723
Message:
--
I have a 3-level menu using JQuery-Superfish. I would like to hover
over the top-level menu item and have BOTH the 2nd and 3rd-level menus
open automatically
This message is to notify you that your ticket has been submitted.
Ticket ID: 1745-7924031743
Message:
--
I am using Epic as my template and can not get superfish to work.
It keeps pulling a Dark Blue lettering for the menu items and some of
them are white.
I ne
This message is to notify you that your ticket has been submitted.
Ticket ID: 1744-2724031742
Message:
--
Hello all jQuery people.
This is my first post in this list but I hope I can make sense with my
question.
Currently I'm developing some web applications for
This message is to notify you that your ticket has been submitted.
Ticket ID: 1741-5224031715
Message:
--
Hi all -
I cannot seem to get this success piece to work, the script will go
through and validate each field of my contact form and prompt the user
to enter
This message is to notify you that your ticket has been submitted.
Ticket ID: 1742-3924031723
Message:
--
Hey all,
Using the (awesome) Cycle plugin all over the place, and I have a
question: in the uncompressed code file [1], a comment says that the
second argum
This message is to notify you that your ticket has been submitted.
Ticket ID: 1739-8724031714
Message:
--
Friends,
I have two sliders on the page. One at the top right, and one at the
bottom right. I would like for them to work together. When one slider
opens th
This message is to notify you that your ticket has been submitted.
Ticket ID: 1740-3424031715
Message:
--
jQuery (English)
jQuery is a fast, concise, JavaScript Library that simplifies how you
traverse HTML documents, handle events, perform animations, and add
Aj
This message is to notify you that your ticket has been submitted.
Ticket ID: 1738-1124031702
Message:
--
Hello,
Need help.
I want to dynamically update the contents of my div tag.
Therefore I used jquery and the code is as follows
$data= 'welcome to this pag
Add the {async:false} option to your $.get. This tells JavaScript to
wait for the response before continuing with the rest of the script.
By default, AJAX is asynchronous.
On Mar 24, 4:13 am, aeg1s wrote:
> I have the following code:
>
> $('#r_0_0').blur(function() {
>
> var x = $('#r_0_0').val
Friends,
I have two sliders on the page. One at the top right, and one at the
bottom right. I would like for them to work together. When one slider
opens the other one closes.
Daniel
I am kinda confused, and stranded.
If i create dragables with clones and drag them into a connected
sortable i can't find a way to get/interact with the objects clone.
dragable:
stop: function(event, ui) { ...}
nothing in "ui" points at the clone..
sortable however doesn't seem to offer a
Hi, I am new to jQuery, and it seems the very first thing I try to do
gives me problems. However, probably I am missing something so let me
ask you if you can hint me on the best way to accomplish this.
I want to transform a document with a flat structure like this
Heading 1
Paragraph 1.1
Paragr
I have the following code:
$('#r_0_0').blur(function() {
var x = $('#r_0_0').val();
var y="#d_0";
$(y).empty();
$.get("apps/P5001/call/LineItems.lasso?LITM=" + x + "&Line=" +
'r_0_0' + "&TEST=" + y,function(data2){
$(y).empty();
$(y).append(data2);
},"html");
$('#addnew').click()
I'm just getting to know jQuery. The basic tutorial (http://
docs.jquery.com/Tutorials:How_jQuery_Works ) fails to mention that $
is used as a shortcut for jQuery. Things would have made much more
sense the first time I read through it if this had been mentioned.
I'm used to $ preceding a varia
Hello,
I have a 3-level menu using Superfish. I would like to hover over the
top-level menu item and have BOTH the 2nd and 3rd-level menus open
automatically. Any ideas?
Thanks in advance!
Jon
dear all,
i'm trying to implement the captcha in a form where i'm using jquery
validation and also custom validation methods.
this is the code i have so far:
jQuery.validator.addMethod("Captcha", Function(value, element) {
jQuery.get("/functions/app/CaptchaAjax/captcha.asp?
validateCap
dear all,
i'm working with jQuery validation to validate the fields in a form.
in this form i have also the captcha (the check is verified through
ajax).
check the code below:
jQuery.validator.addMethod("Captcha",
function(value, element) {
jQuery.get("/captcha.asp?validateCaptchaCode=" + jQuer
OK, this is what I have.
Multiple lists that I can collapse and expand.
What I want is for them to only show x amount of items until I expand
them.
Say x = 2
In Section A the following would be shown
Link A-A
Link A-B
In Section B the following would be shown
Link B-A
Link B-B
etc.
And when
I have a 3-level menu using JQuery-Superfish. I would like to hover
over the top-level menu item and have BOTH the 2nd and 3rd-level menus
open automatically. Any ideas?
Hello all jQuery people.
This is my first post in this list but I hope I can make sense with my
question.
Currently I'm developing some web applications for internal use,
porting some old ones.
I'd love the jQuery-way to do asynchronous requests, so I developed a
plugin similar to Pimentech jFram
OK - let me please preface this by the fact that I am now 12 hours
into jQuery, with a pretty basic Javascript understanding, and years
of PHP work. I could not find the answer to my questions, mostly
because I don't exactly know how to frame them!
I am creating a search with expandable results.
hello,
first off, amazing! thank you for your great work.
most every part is working for me, including using background images.
when the mouse hovers, the background image changes as does the text
color. perfect. currently, i only have the superfish menu on the
"Discounts" link so that is the li
Friends,
I have two sliders on the page. One at the top right, and one at the bottom
right. I would like for them to work together. When one slider opens the
other one closes.
http://sucro.se/red7e/BE/
Any ideas?
Daniel
--
View this message in context:
http://www.nabble.com/2-Sliders-worki
1 - 100 of 180 matches
Mail list logo