I started working on a mobile app for my site, and it's working pretty
good so far, but I have a problem with the animations.
What i've got (you can see it at http://zifimusic.com/v2/mobile), the
page gets a list of concerts which is scrollable. clicking a result
will slide the list over and show
> Try giving this a
> read:http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-...
Great post, thank you!
I'm not sure where to begin asking for help on this one, so I'll just
explain what I'm trying to do.
What I want to do is show a notification on the page when another user
logs in.
Say I am User A, and User B logs in, I want to see a notification that
User B has logged in.
Right now I have a so
doesnt seem to work get a recursion error
thanks!
On Mar 16, 7:26 pm, ricardobeat wrote:
> jQuery.fn.showLoop = function(i){
> var i = i || 0,
> self = this;
> $( this[i] ).show(600, function(){
> self.showLoop(++i);
> });
>
> };
>
> $('.type').showLoop();
>
> On Mar 16, 7:27 pm
Dave Methvin showed someone else another way to do this back in
December. Here is a slightly modified version of his approach:
$(document).ready(function() {
var $divs = $('div').hide(),
div = 0;
(function(){
$divs.eq(div++).show('slow', arguments.callee);
})();
});
--Karl
I usually put on small bit of js in the head:
document.documentElement.className = "js";
Then hide elements you like in your CSS:
.js element_to_hide {display: none;}
That way elements are only hidden if the user has JavaScript enabled.
On Mar 16, 6:47 pm, James wrote:
> Try giving t
Guys,
I've finally gotten around to implementing a sample Model to drive the
SlickGrid.
As it stands right now, it provides a filtered/sorted view of the data
as well as a mechanism to resort or update the filters. Whenever the
data in the view changes, the model fires onRowCountChanged and/or
o
im getting too much recursion in firebug, any thought?
On Mar 16, 7:26 pm, ricardobeat wrote:
> jQuery.fn.showLoop = function(i){
> var i = i || 0,
> self = this;
> $( this[i] ).show(600, function(){
> self.showLoop(++i);
> });
>
> };
>
> $('.type').showLoop();
>
> On Mar 16, 7:
Adding to Mat's solution to work for many fieldsets:
$("legend").click(function() { $(this).next("ul").toggle(); });
On Mar 16, 4:05 pm, Mat Schaffer wrote:
> Tried something like this?
>
> $("legend").click(function() { $("fieldset ul").toggle(); });
>
> On Mar 15, 2009, at 10:40 AM, shapper
Tried something like this?
$("legend").click(function() { $("fieldset ul").toggle(); });
On Mar 15, 2009, at 10:40 AM, shapper wrote:
Hello,
I have a list of fieldsets and each one has a legend.
I am thinking in having something like:
Personal Data
first element
second element
Try giving this a read:
http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-so-excellent-flash-of-amazing-unstyled-content
On Mar 16, 3:33 pm, jhm wrote:
> I get an annoying flash in IE when I go to a page. I'm wondering if
> there is a good way around it.
>
> It's my 2nd & 3rd
Anyone know if Jörn Zaefferer's Tooltip plugin can be triggered from
another event or if it's only when hovering over an element?
For example, I could trigger the tooltip on element a FROM element b
(or via trigger()).
I'd like to use it as sort of a poor man's modal window message.
See it here
http://d61628.tinf28.tuganet.info/132/1.htm
On 17 Mar, 01:30, Stephen Sadowski wrote:
> Hey,
>
> I'd go with $('#form input,select,radio,textarea') to select all
> standard form elements, but the validation depends on how you're doing
> validation.
>
> -S
>
>
>
> On Mon, 2009-03-16
I get an annoying flash in IE when I go to a page. I'm wondering if
there is a good way around it.
It's my 2nd & 3rd level navigation. I have a collapsing menu that is
intended to only show the 3rd level nav once its corresponding 2nd
level is selected. In case javascript is turned off, I have th
Hey,
I'd go with $('#form input,select,radio,textarea') to select all
standard form elements, but the validation depends on how you're doing
validation.
-S
On Mon, 2009-03-16 at 18:18 -0700, led wrote:
> Hi need to validate just the form elements in a step. how do i
> reference the form element
1) Are you sure that $("#dmid img", msg).each() is actually looping
through all the elements you intended to loop through? Instead of
doing a bind, try $(this).hide() to debug it. If it's not hiding the
elements, it's not looping correctly. If it does hide, your event
handler is not working correc
thanks guys!
On Mar 16, 7:26 pm, ricardobeat wrote:
> jQuery.fn.showLoop = function(i){
> var i = i || 0,
> self = this;
> $( this[i] ).show(600, function(){
> self.showLoop(++i);
> });
>
> };
>
> $('.type').showLoop();
>
> On Mar 16, 7:27 pm, Tom Shafer wrote:
>
> > how can i
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
>
>
>
>
>
> // jQuery(document).ready(function(){
> alert('doc ready!');
> jQuery("#home_start_register_button").corner('bevel');
> });
> //]]>
>
>
>
>
>
>
>
Hi need to validate just the form elements in a step. how do i
reference the form elements in a div.
ex: $("#form").validate().element("elements in the div")
thanks in advanve
A few things you could try:
1. explicitly set the width of the table rather than let the width of
the items within it to determine its width.
2. make sure the stylesheets are being loaded before the scripts.
3. apply the drop shadow on $(window).load() rather than $
(document).ready()
--K
I've got what should be a fairly simple implementation of the
nyromodal (like thickbox).
I use the modal multiple times on my page, and call it by just using
nyromodal as the class on the a-tag that makes the request.
The problem I'm having is that on one page I'm trying to put my
javascript wid
This is the best way I've found to initially hide content with
JavaScript without having the flash of unstyled content.
http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-so-excellent-flash-of-amazing-unstyled-content
--Karl
Karl Swedberg
www.englishrules.com
ww
Hmm,
but then my chances are good of breaking the functionality of my other
jquery-plugins, right?
What a mess..
I also tried nifty-corners -> absolutely horrible, not to mention the
fact that it is uber-intrusive (like f**king up non-related CSS and so
on).
Any other good plugins you coul
> do i need to update the jquery.cycle.all.js file?
>
> thanks alot!
>
> dan
You say you downloaded a newer version of jQuery, but v1.2.1 is
actually quite old. I'd highly recommend upgrading to v1.3.2 which is
the latest.
http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js
If you decide
Use the Validation plug-in:
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
On Mar 16, 12:56 pm, Egipicio wrote:
> hello
>
> I want to validate an input field so he accepts numeric value greater
> than 20 ..
>
> person type number is less than 20 open an alert is to do this with
>
> Hello, I'm trying to submit a form via Ajax and receive a JSON return
> type
>
> http://imgur.com/2KZ1.png
>
> As you can see in the screen shot, I call the method ajaxForm, and on
> success of the ajax call, processJson is being invoked. This method
> only outputs a data.message alert.
>
> For
hello
I want to validate an input field so he accepts numeric value greater
than 20 ..
person type number is less than 20 open an alert is to do this with
jquery?
jQuery.fn.showLoop = function(i){
var i = i || 0,
self = this;
$( this[i] ).show(600, function(){
self.showLoop(++i);
});
};
$('.type').showLoop();
On Mar 16, 7:27 pm, Tom Shafer wrote:
> how can i loop through each div on a page and have them appear one by
> one
> i am tryin
It looks like you've got the function keyword inside the slide callback
which is where you want to call the myAjax function, not declare it. I think
you want something like this
function myAjax(val1, val2) {
// do something with ajax and the two values passed in, val1 and val2
}
$(function() {
Found excaly what I need it's not using jQuery.
http://www.dhtmlgoodies.com/scripts/dhtmlgoodies-week-planner/dhtmlgoodies-week-planner.html
Is there something like it with jQuery outhere?
Thanks,
//JF//
Andy,
I still don't know why the trigger click doesn't work. For me, it
doesn't work on Firefox and I wrote a greasemonkey script to do the
clicking via this code:
var evt = document.createEvent("HTMLEvents");
evt.initEvent("click", true, true);
We'd love to help you out with this question over here:
http://groups.google.com/group/jquery-ui
- Richard
On Mon, Mar 16, 2009 at 2:39 PM, Jason wrote:
>
> I have a nested list of the type below. It represents a folder
> hierarchy and I am trying to make it so that if the user drags any
> fo
You can try using jQuery's getScript() function:
http://docs.jquery.com/Ajax/jQuery.getScript
On Mar 16, 11:28 am, Scott wrote:
> I'm using an excellent javascript library (the library does not use
> jquery if that matters). I need to provide other sites with a
> reference to my javascript api
Where is the source of your data coming from? Server-side?
If so, you can use some kind of server-side script to create the auto-
suggest options rather than mess with the autocomplete plugin. The
autocomplete plugin only displays whatever data you feed it.
On Mar 16, 7:09 am, Arno wrote:
> Hi,
var arrayList2 = $(".list"); // set of elements with class 'list'
$.each(arrayList2, function() {
$(this).show();
});
Note that this will have all the elements display at once
(technically). If you want it so that one appears, then another one
appears maybe a second later, then another appe
how can i loop through each div on a page and have them appear one by
one
i am trying
var arrayList2 = $.makeArray(document.getElementsByClassName
(".type"));
$.each(arrayList2,function() {
$
Have you tried 1.3.2? A lot of selector bugs have been fixed in this
release.
Try changing it to return !!$(element.form).find(param).length and see
if it works.
- ricardo
On Mar 16, 4:30 pm, chielsen wrote:
> So i upgraded to the latest version and waisted my day :(
> Seems like the dependant
You could simply use
$(window).trigger('unload')
That will unbind all events bound through jQuery. A function for doing
that is already defined in the source code:
jQuery( window ).bind( 'unload', function(){
for ( var id in jQuery.cache )
// Skip the window
Thank you for doing this Tony. Not only are you supporting the jQuery
project with a great grid control but you're also going through great
lengths to ensure integration with jQuery UI. You're a great project
supporter.
Thanks,
Rey
jQuery Team
Tony wrote:
I'm glad to anounce the new relea
Hi,
I'm using jQuery on a site that I'm working on and everything works as it
should - except in Internet Explorer 7 (and previous versions, but the site
doesn't support them). Fading content on the site simply won't show up in
this browser. Take a look at http://dev.staffanestberg.com/fromswede
Hey,
You may want to try
$('div#tabs input[type!=hidden]').each(function(){/*whatev*/});
Hope that helps!
On Mon, 2009-03-16 at 08:08 -0700, jjsanders wrote:
> Hello,
>
> I want to select all my input from a form within a certain div except
> hidden values.
> So far I have this
>
> $('div#t
Hi,
I've build this simple website http://www.blogate.org/ to help
bloggers to publish their articles, but I've one problem
If you click on one of the red menu items on the right, you should see
animation in the middle of that box,
informations box should fade out and fade in immediately,
unfortu
Hi Charlie ! i've just started working with jquery
could you tell me the way you load the external page ?
i'm having problems with php , and i'm not sure i'm using the correct
function
thanks!
I'm a first time jQuery user and I just finished integrating jQuery
and tooltip (http://docs.jquery.com/Plugins/Tooltip) on my website.
Things are going great and I'm regretting not using it for so long,
but my problem is that my tooltips disappear on click. This isn't an
issue for links but I ha
hi there
so i basically downloaded a newer version of jquery and am using that
on my site to get some other effects working, but now the slideshows
have stopped working that normally work.
you can see for instance at
http://www.danhaskett.co.uk/index.php?/new-work/kulttuurivihkot-magazine/
do
Hi I am a novice to javascript and jquery developer trying to pass
slider values to an AJAX script. My slieder looks like this:
$(function() {
$("#slider-range").slider({
range: true,
min: -10,
max: 66,
I'm having an issue with a drop shadow on a table element. Sometimes
when the page loads, the drop shadow is the wrong width and height for
the table. I can't reliably reproduce the error, but it seems to
happen more when there's nothing in the cache. The size seems
arbitrary -- it's not the same
Hi,
I'm a young developper, and i want to enhance the autocomplete plugin.
In fact, I can't use this plugin for an "auto-suggest", for a Tag
input (User can select a tag which already exists, but he can create
one if he doesn't exist )
I try but i fail to use autocomplete plugin for this.
Can
I'm using an excellent javascript library (the library does not use
jquery if that matters). I need to provide other sites with a
reference to my javascript api (which depends on the above
javascript). However, I don't want other sites to have to enter
something like this:
http://www.othercompa
Has anyone seen an example of jqGrid that uses the JQuery slider
widget for paging navigation? Or implemented that combo themselves?
The slider would replace the text input field that allows the user to
input the page he/she wants to see. ComponentArt's .NET grid component
offers the slider (see
I am using jQuery form validation and it works great, but it displays
the error message to the right of each form element. I actually want
the error message for each form element to be in a specific div that I
customize.
For example:
If anyone can tell me how you would do that it would be gre
Hey,
How about
$('#form input,select,radio').change(function() { /* check to see if
necessary fields are filled out, if so enable submit */}
You do have some load for each change on a field, but it would keep the
user from being able to submit and validate until you're ready for them
to do so.
I have a nested list which represents a folder hierarchy. An example
of one of these lists is below. Basically I want the user to be able
to drag any of the folders into a droppable. As is, if the user
starts dragging Folder1 in the example below, the whole list is
dragged along as well (which
Hey there,
how about using .prepend(), if all you want to do is insert it first?
-S
On Mon, 2009-03-16 at 08:25 -0700, Chizo wrote:
> Hi people, how can i add a first option value to a combobox,
> containing for example "Select..."
> With append i can add the new value, but i don´t know how to
Val, did you find you where looking for?
I need excaly that, do you have something to share with me?
Thanks,
//JF//
I have a nested list of the type below. It represents a folder
hierarchy and I am trying to make it so that if the user drags any
folder in the tree, all of the children will be dragged along with
it. In the example below, if the user drags Folder1 the entire tree
comes with it (which is what I
Hi folks,
I couldn't find any solutions to this. I needed the validate plugin to
have validation group like functionality for use on asp.net webforms
(because asp.net only allows one form).
I'm not much a javascript programmer but I had a crack at it anyway.
After stumbling in the dark for a bit
That works great guys. Thanks a heap!
On Mar 16, 9:29 am, errant wrote:
> Hi. First, make sure events are attached to elements and firing ( $
> (".sidebar a").mouseover(function(){ alert(this) }; or smth like
> this). Second, there are nice method called
> hover:http://docs.jquery.com/Events/ho
I am looking at jcarousel and i am a little confused on how to
integrate and can't seem to find great documentation, is there a site
with example code on how to integrate it into my site. If anyone else
has a suggestion on the best way to acheive my goal I would love to
hear it.
My initial thoug
Since the browser will always have the Markup and CSS before the
javascript is finished it's a pretty typical approach to avoid seeing
stuff before the JS is done, although having a simplified version of
your page that is accessible to users without JS enabled (for instance
all the tabs visible f
Did you upgrade the validation plugin to 1.5.1 after updating jQuery to 1.3.1?
Jörn
On Mon, Mar 16, 2009 at 8:30 PM, chielsen wrote:
>
> So i upgraded to the latest version and waisted my day :(
> Seems like the dependant requiring does not work (withh 1.3.1).
>
> The error occures for instance
See
http://jquery-ui.googlecode.com/svn/tags/1.7/themes/redmond/
The same individual files are also in the
/development-bundle/themes/{themename}/ folder when you download a zip from
the download builder:
http://jqueryui.com/download
If you need any further help, note there's a separate list ju
On a single page I am trying to use 1 theme for my accordion and 1
theme for my tabs. The themes in 1.7 have one huge css file and it
seems like a real pain to go through and delete what I don't need.
Even if I could do that it's not really a good solution because i
might want to use that theme fo
At script's demo page, blockui's developer used buttons to activate
the scripts. How can I use links instead?
I tried it as below but it did not work.
xxx
html:
Run
js:
$(document).ready(function() {
$('#demo5').click(function() {
so here's what I would up doing. The data is coming from the django
template. i added this after the {% for result in results %} template
tag in the admin/change_list_results.html template:
$(document).ready(function(){
var column = 12
$('img[alt="1"]').parent().filter('td:nth-ch
Is this the best practices workaround? I hardly ever see this on other
sites that use jQuery or a similar JS library.
On Mar 13, 7:20 pm, James wrote:
> For jQuery UI Tabs I get that issue too where it will display the HTML
> list before turning into tabs. Though usually only just for the
> init
I have an that, once hovered over, animates and fades in the
of a larger version of the picture, along with text and a
hyperlink. When mousing out, the animates and fades away. This
works fine, only my hover function only pertains to the itself.
As soon as either a) the appears over the , or
that looks exactly like what I am looking for, i am going to read up
on it and see what I can do. Do you find it difficult to integrate
into sites, or did you have any trouble styling the navigation to fit
the site? Thanks for the info, it will be a big help
On Mar 15, 3:21 pm, Jon Crump wrote
Assuming you have this:
Something here
You'd use this javascript:
$('#dj .options tr').each(function(){
var self = $(this);
self.find(':checkbox').click(function(){
self.toggleClass('selected')
});
});
I don't know if it's possible for the click event to fire
Hi,
Try using prepend to add at the beginning.
See jQuery docs - http://docs.jquery.com/Manipulation/prepend
Paul
On Mar 16, 3:25 pm, Chizo wrote:
> Hi people, how can i add a first option value to a combobox,
> containing for example "Select..."
> With append i can add the new value, but i do
how to just validate elements in a div
So i upgraded to the latest version and waisted my day :(
Seems like the dependant requiring does not work (withh 1.3.1).
The error occures for instance when you have a require: '#item:filled'
option.
What happends is in this code:
depend: function(param, element) {
jQuerys selector engine is browser independent. So $("*") actually
refers to all elements and works in all browsers (this is why we love
it).
But I would be careful. $("*").unbind() can be slow.
On Mar 16, 11:50 am, redcom wrote:
> isn't this ie specific?
>
> On Mar 16, 8:50 pm, MorningZ wrote
A variant of this question pops up on occasion, but none of the
answers I've seen thus far suit my use case. The solution usually
involves the recommendation to do something like this:
$(...).validate({
...,
submitHandler: function() {
// send AJAX request for calcu
can somebody send me a working example of showresults plugin. The
sample mentioned on the site refers some css file for template
creation which I do not have and do not know where to get these from
Appreciate if you send some working code sample
~nil
isn't this ie specific?
On Mar 16, 8:50 pm, MorningZ wrote:
> *maybe*
>
> $("*").unbind();
>
> all your code is looking at the document itself and then the
> tag itself
>
> On Mar 16, 2:44 pm, redcom wrote:
>
> > Hello
> > I have a custom application build on top of gecko 1.9 and using
> > spi
*maybe*
$("*").unbind();
all your code is looking at the document itself and then the
tag itself
On Mar 16, 2:44 pm, redcom wrote:
> Hello
> I have a custom application build on top of gecko 1.9 and using
> spidermonkey and some c++ calls js->c++->js
>
> When i reload one application page i
Hello
I have a custom application build on top of gecko 1.9 and using
spidermonkey and some c++ calls js->c++->js
When i reload one application page i get some events triggered after
the page has been loaded.
The GC is destroying my objects and html elements some how, but the
events remain attac
How to drag link from another window and using the javascript in the
main window to intercept the link and add customized handler?
The goal is to have an event handler in the main window, then whenever
a new link from different browser window is dragged into the main
window, the dropped link will
Very nice. I've used a prior rev and liked it. Great upgrades here.
Thanks much!
- Jack
Diego wrote:
NEW! jQuery Star Rating Plugin v3.00
http://www.fyneworks.com/jquery/star-rating/
New features:
- Now entirely based in the $.fn.rating namespace
- Now uses $.fn.data t9o store control setti
ok, next i want to be able to rollover the element, in this case, an
h1, and have the css definitions pop up in a tool tip box. so i've
got my custom tool tip box calling an external file named
cssHovTip.asp. in that file i have a div class called "css-code".
back in the original file i am doing
Unsubscribe
From: jquery-en@googlegroups.com [jquery...@googlegroups.com] On Behalf Of Dave
Roberts [dave.a.robe...@gmail.com]
Sent: Monday, March 16, 2009 1:41 PM
To: jQuery (English)
Subject: [jQuery] Form Plugin data return type
Hello, I'm trying to s
Take a look at Mike Alsup's BlockUI plugin:
http://malsup.com/jquery/block/
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Mar 16, 2009, at 1:43 PM, miro wrote:
is there any available plugin which works for showing busy
indicator ? I
am looking fo
is there any available plugin which works for showing busy indicator ? I
am looking for something which masks the page with some background color
and adds this message Loading , some what like a modal window which
blocks the actual page
--
View this message in context:
http://www.n
Hello, I'm trying to submit a form via Ajax and receive a JSON return
type
http://imgur.com/2KZ1.png
As you can see in the screen shot, I call the method ajaxForm, and on
success of the ajax call, processJson is being invoked. This method
only outputs a data.message alert.
For some reason, the
NEW! jQuery Star Rating Plugin v3.00
http://www.fyneworks.com/jquery/star-rating/
New features:
- Now entirely based in the $.fn.rating namespace
- Now uses $.fn.data t9o store control settings
- API to set control value / state via javascript
- API to change readOnly option dynamically
- API to
The ajaxForm() method is meant to run as the page is loading. It
doesn't submit the form, it simply sets up a submit handler on your
form. You're basically applying the plugin to the element, just as
with validate(). The callback function that it can take as a parameter
would be some routine you w
On Mar 16, 2009, at 11:08 AM, jjsanders wrote:
Hello,
I want to select all my input from a form within a certain div except
hidden values.
So far I have this
$('div#tabs input').each(function(){
//functionality
});
How can i exclude hidden values?
Hi,
If you want to exclude inputs with
this won't work:
jQuery("#profile-edit-avatar").toggle(alert('toggled!'));
do this:
jQuery("#profile-edit-avatar").toggle(function(){alert
('toggled!');});
On Mar 16, 7:51 am, Michal Popielnicki
wrote:
> Hi there.
>
> I'm running jquery 1.3.2 and I've found rather strange behavior of
> toggle f
Hi.
Maybe you figured it out by now, if not I think I know the problem. I
had the exact same problem a while ago, and as you said - it drives
you crazy. But eventually I figured it out. I had to remove the «text-
align: center;» from «body» in the CSS. So if you just remove that it
should probabl
Tin, It is all excellent stuff, Thank you for your efforts. Since you
want more people to get involved, and JQuery UI is missing a key
component - grid, why don't you suggest them to pick this one and
continue it as part of the next native Jquery UI set of components.
That would certainly be best
I've encountered yet another issue with IE... while running a jquery
based script to produce a circular carousel of images, IE errors at
the end of the image list if there are only PNG images in the carousel
(works fine in FF). A sample with 3 images is available here:
http://www.bostonwebhostin
Hi
I'm trying to use the jQuery superfish plug-in to create the 2 level
menu
but I need to grab the first level of the menu from table and td not
from ul and li
I'm new to jQuery so I can't get it work
any one could help me with that?
this is my html
first level
Hi there.
I'm running jquery 1.3.2 and I've found rather strange behavior of
toggle function.
In general i have following HTML:
Hint text
The style of id is:
#profile-edit-avatar{ display: none;}
Now, when I launch toggle function on that element, for example this
way:
jQuery("#pro
I have a django app where i have a model which contains a boolean
(checkbox) field. What i would like to do is change the corresponding
table row color in the admin table based on whether or not this field
is checked. i have come to the conclusion that this is only possible
with jquery. i am a
Hey all.
I'm working on a project requiring client-side data storage based on
the new HTML 5 Offline applications spec. Having a database on the
client like Google Gears is a great idea, but it'd be nice to have a
framework to manage the database.
I was thinking of running up a jQuery plugin tha
Hi people, how can i add a first option value to a combobox,
containing for example "Select..."
With append i can add the new value, but i don´t know how to put it
first.
Any ideas will be apprecited!
Thanks!
Hi martijn,
Thx for your reply i found
http://www.pengoworks.com/workshop/jquery/calculation/calculation.plugin.htm
and that is exactly what i need. The same idea as what you are saying.
Erwin
On 16 mrt, 14:56, Martijn Houtman wrote:
> On Mar 16, 2009, at 2:46 PM, ebru...@gmail.com wrote:
>
>
Hello,
I want to select all my input from a form within a certain div except
hidden values.
So far I have this
$('div#tabs input').each(function(){
//functionality
});
How can i exclude hidden values?
Doh
Thanks so much for bringing that to my attention. I must have looked
at that a million times and was convinced the issue was elsewhere.
On Mar 16, 9:12 am, Paul Mills wrote:
> Hi Chris,
> Your .empty() refers to .gloves_wear - but the class on the is
> wear_gloves !
>
> Otherwise cod
1 - 100 of 136 matches
Mail list logo