solute;
top: 47px;
}
#picwrapper #overlay{
position: absolute;
top: 5px;
right: 10px;
z-index: 1000;
}
#pics{
z-index: 900;
}
JS:
jQuery('#pics').cycle( { pause: 1, speed: 4000, timeout: 4000 } );
Thank you,
Matthew
Hmm, strange... Positioning the overlay with a left offset works, but
positioning it with a right offset doesn't. Any ideas why the right
offset doesn't work? It's not a massive problem, just seems strange!
Strange - seems to work with a left offset, but not a right offset.
Doesn't matter in this case, just seems strange. Any ideas what is
causing it?
Just spent a while working out how to do this with the form Validation
plugin from http://bassistance.de/jquery-plugins/jquery-plugin-validation/
, but it's actually really logical when you get it. Still, might save
someone else the effort!
UK Postcodes have a fixed format and a standard regex to
$("p", "body#seniors #text")
[2].append(something);
Shouldn't that append something after the 3rd paragraph in the #text
div (if it exists)?
If I have the wrong syntax, how would I access the $("p",
"body#seniors #text") array at different indexes?
Thanks,
Matthew
nth-child(2)").after(data);
});
On Jul 13, 12:22 pm, James wrote:
> The eq() selector is one way of doing it:http://docs.jquery.com/Selectors/eq
>
> On Jul 13, 9:09 am, Matthew wrote:
>
> > So it seems like everyday I learn a new way to code the same thing.
>
ction(data){
$("body#seniors #text
p:eq(2)").after(data);
},"text");
On Jul 13, 2:11 pm, Matthew wrote:
> Ok, so eq() seems to work fine, I tried nth-child but im not sure if
> it worked the way I wanted. When I console.log eq() for the code
t, not a jQuery
> object, that's why you need to "rewrap" it in jQuery.
>
> Also, IDs should be unique (only one #text element), so you can
> simplify your selector to $( $('#text p')[2] ).after(data) or $('#text
> p').eq(2).after(data);
>
> chee
I am having trouble getting tooltips to work with the generated custom
error message created by the validator plugin. I noticed that the
tooltips do not work on dynamically generated elements unless the $
('a').tooltip(); is called sometime after the element is actually
created.
My custom error m
Hi all
I've got a js file where all the functions are wrapped inside $
(document).ready(). I want to call one of the function from within the
HTML but it says that the function "is not defined". Any ideas?
Cheers
Matthew
thods inside
this function are not available globally so I'm going to have to re-
factor the code in the js file. I'm not to sure why the developer
wrapped it all in the ready() function but I'll have to painfully pull
it apart now... nothing's ever easy is it :)
Cheers
Matthew
onClick to call Action1() and it doesn't
work.
So this must be Mike suggested binding it to the body so that it's
available globally.
Cheers
Matthew
On Sep 22, 10:20 am, Matthew wrote:
> Hi guys
>
> Thanks for the great feedback. MorningZ was right on the money with
Ok thanks MorningZ. I've taken a different approach. I'm just binding
the onClick logic to the button within the .ready() block.
Thanks again for all the help!
Cheers
Matthew
On Sep 22, 10:39 am, MorningZ wrote:
> Mike's suggestion indeed is the rest of it... i was just t
Question about the code, in the change() event, why are you calling
two functions for the callback? I though change() could only get one
function as a parameter.
On Jun 23, 11:44 am, Paul wrote:
> Hi there,
>
> This is what I'm trying to do:
>
> When a user selects a group in the first SELECT bo
n my above example the $("#pageWrap").slideUp just jumps up
without a slide. I need the callback so I can have the effects happen
after the initial slideUp. Since I'm calling effects on different
elements I can't do the dot chain. Any other way to make this happen?
I'd like to avoid settimeout() if possible.
~ Matthew
eWrap").slideUp(1000, function(){
> doSlideDown();
> $("#btn_uopBack").fadeIn(250);
>
> })
>
> ..fredrik
>
> On Jun 23, 8:52 pm, Matthew wrote:
>
> > Hi all,
> > I am trying toslideUpa container Div and using theslideUp's
>
$("select option).attr("selected","selected");
if your option or select tag has an id use that:
$("#select #option").attr("selected","selected");
now depending on what you are trying to do there are different ways to
get an array of all the options in a select tag and to determine what
option s
when you use this code $("tr td") it would create an array of all
those td's in the tr. So then we just need to cycle through the first
two and set the attribute then break the cycle.
var counter = 0;
$("tr td").each(function(){
$(this).attr("attribute","value");
counter++;
e while only accessing
the first two td's for each tr.
On Jun 24, 10:43 am, Matthew wrote:
> when you use this code $("tr td") it would create an array of all
> those td's in the tr. So then we just need to cycle through the first
> two and set the attribute then break t
if you have
nested tables. I'm at work so I cant spend the time to test the code
before hand.
On Jun 24, 10:50 am, MikeyJ wrote:
> Thx Matthew! Great explanation.
>
> I probably should have worded one thing a bit differently...I'd like
> to set this attribute for "the fi
rray where $("#select option").each(function(){}); will iterate
through each option in a select. Inside function(){} you would then
set the attribute.
On Jun 24, 11:08 am, shaded wrote:
> ravi, matthew,
>
> thanks for the responses, and i totally agree that this group is huge.
> Go
n(":first").attr("attribute","value");
});
On Jun 24, 11:14 am, MikeyJ wrote:
> Looks like your first two offerings throw this error in Firebug:
>
> "unlabeled break must be inside loop or switch"
>
> Your last example works but it only works
t;
> $("table#mytableid tr").each(function() {
> $("td:first",this).attr("align","right");
>
> });
>
> On Jun 24, 11:31 am, Matthew wrote:
>
> > sorry about the error, replace "break;" with "return false;" Yeah,
> >
can you add more specifics? how are you increasing size? Are you using
new resized images or just changing the dimensions using javascript?
If you are changing dimensions, have you tried the tutorials you found
or do they not work after you change dimensions?
On Jun 24, 11:49 am, Mario Soto wrot
var totalPrice = $(UNITPRICE).val() * $(UNITQUANITY).val();
$(TOTALPRICE).val(totalPrice);
On Jun 24, 2:03 pm, efet wrote:
> Hi,
>
> I have three input fields as UNITPRICE & UNITQUANTITY and TOTALPRICE.
> UNITPRICE's value depends on a product chosen in the preceding tab.
> Now, I want UNITPRIC
Check out the 'value' option, moveTo was removed but value should do
the same: http://docs.jquery.com/UI/API/1.7/Slider
On Jun 24, 4:35 pm, StanW wrote:
> If the moveTo function is now missing from the jQuery slider UI, is there a
> way to use the value options to set sliders?
>
> I need to have
Sorry, didnt realize you answered the moveTo question.
On Jun 24, 5:09 pm, Matthew wrote:
> Check out the 'value' option, moveTo was removed but value should do
> the same:http://docs.jquery.com/UI/API/1.7/Slider
>
> On Jun 24, 4:35 pm, StanW wrote:
>
> > If the
I don't have time to be more specific, but just from doing some
searching on the internet, it seems like javascript can only return
properties of the mouse and not control it directly. Instead of
controlling the mouse cursor, couldn't you expose some sort of warning
if the user moved outside the e
Can you explain to me why you are disabling a hidden input field? I
assume the idea is that they are both checkboxes with the the same
name attribute. Maybe I could help if I understood why you are doing
this.
On Jul 10, 1:38 pm, Matt Zagrabelny wrote:
> Greetings,
>
> I am experiencing some cra
; On Fri, 2009-07-10 at 14:40 -0700, Matthew wrote:
> > Can you explain to me why you are disabling a hidden input field? I
> > assume the idea is that they are both checkboxes with the the same
> > name attribute. Maybe I could help if I understood why you are doing
> > t
; On Fri, 2009-07-10 at 14:40 -0700, Matthew wrote:
> > Can you explain to me why you are disabling a hidden input field? I
> > assume the idea is that they are both checkboxes with the the same
> > name attribute. Maybe I could help if I understood why you are doing
> > t
Hi All,
Have tried to find an example of this, and played around a bit but got
no where.
I want to have 2 sortable lists (just like in the demo
http://jqueryui.com/demos/sortable/#connect-lists)
However I also want to be able to select multiple items and then drag
them all from one list to anot
Thanks Karl have posted it over there as well.
Okay,
So my code works in FF, IE8 and Safari (I've only tested in the
latest versions of all). But in IE6 and IE7 I get an error saying
"Object doesnt support this property or method".
http://www.curvesinformation.com/
index.php?Referrer=GFC&campaign=GF" target="_blank">
curvesLeadForm is a c
a database then pass them into the curvesLeadForm function using
on page php echos.
I guess there are ways around using onclick but they seem to involve
rewriting a lot of code.
Thanks again.
~ Matthew
On Nov 10, 12:52 pm, Scott Sauyet wrote:
> On Nov 10, 2:22 pm, Matthew wrote:
>
> >
Nathan's plugin looks like the way to go, but before I saw his plugin
I would always just show some loading div or paragraph before the ajax
call, then hide it in your 'success:' function in the ajax call.
$('#loader").fadeIn(500);
do your ajax thing
success: function(){
$('#loader").fadeOu
Sorry I can't be more specific Norbert, I'm at work and have limited
time.
Check out the "Trigger" event for jQuery: http://docs.jquery.com/Events/trigger
Looks like you could listen for a click on the 'li' then trigger a
click on the child 'a' tag without worrying about extracting the
target or
Hi Norbert,
If you read up on the jQuery click event http://docs.jquery.com/Events/click
you will see that it binds a click listener to whatever element you
apply it to so in your case:
$("#fake_href").click(); <- this is 'listening' for a user to click
on some element with id = #fake_href, so
I posted this earlier, but perhaps I didn't explain it right.
Im trying to get code that uses this syntax to work in IE6/7
It seems like IE6/7 do not like the $(this).function syntax, although
if I just alert($(this)) I get [object Object] which I think is what
should be expected.
I am using a
n't bubble up.
> event.stopPropagation();
> //run custom function.
> cutsom_function(parameters);
> }
> );
> });
>
>
>
> More Details
>
>
o + "\n" +
> "varthree: " + varthree + "\n" +
> "varfour: " + varfour + "\n" +
> "varfive: " + varfive );
> }
>
>
>
you could try appending some sort of query string on the end of the
image name?
http://images.earthcam.com/ec_metros/newyork/newyork/lindys.jpg?refreshImg=[random_number]";
for [random_number] try generating a random number using javascript
then putting it there. I have heard that passing a query
Hi, I just started playing with jquery yesterday and I'm interested in
assigning the css class of an element to a variable and then
applying that class to a div in another section.
While I've been looking through multiple tutorials and searching on
the discussion board I haven't seen it.
i.e.
in short:
when I use FF3 and submit a form by hitting the enter-key after typing
a few characters in an input field, the validator thinks the form is
valid even when it's not, and subsequently submits the form.
to see what i mean, go to any jquery.validator demo:
http://docs.jquery.com/Plugins/
Hi all,
Check out http://pricebeep.co.uk.
I'm pulling the content for the cycle plugin dynamically. Frequently
it will be rendered vertically, before constructing the actual
horizontal carousel.
I think I've worn my brain out over the last month or so getting the
site up and running, so can any
Brilliant.
Thanks so much.
Matt
On Apr 3, 5:15 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > I'm pulling the content for the cycle plugin dynamically. Frequently
> > it will be rendered vertically, before constructing the actual
> > horizontal carousel.
>
> The vertical rendering is how
http://www.firstlineeducation.ca/
Hi!
I'm new to jQuery, and just realized that somewhere along the line
while coding the accordian and cycle plugins into this page, and then
finishing the rest of it the links within the accordian don't work -
they just scroll the accordian section back up into
http://www.firstlineeducation.ca/
Hi!
I'm new to jQuery, and just realized that somewhere along the line
while coding the accordian and cycle plugins into this page, and then
finishing the rest of it the links within the accordian don't work -
they just scroll the accordian section back up into
Hi all,
Happy to announce that the Ingrid datagrid project is still very much
alive! With the help of Patrice Blanchardie, Ingrid has been moved to
its new home on Google Code, and includes quite a few bug fixes and
updates (full list below).
Also included is an updated example of a remote PHP
Hey guys,
I'm having a bit of an issue with the site I'm building at the moment.
It's currently under http://www.swfmania.co.uk/dotcommon with the CSS
at http://www.swfmania.co.uk/dotcommon/style.css and the relevant
jQuery file at http://www.swfmania.co.uk/dotcommon/tabs.js
If you're using Fire
Brilliant! Thanks very much. :D
.
Any help is appreciated.
-Matthew
no sorry its not on a public server where anyone can access it.
I have been going back and taking things out.. and puting the stuff
back in to see what part is making it fail..
On Sep 3, 2:26 pm, Mike Alsup wrote:
> > Im using the blockUI() plugin in jquery and I attached a click event
> > to a
It seems to bug because i am using a
Ive tried the tag inside the and outside the like
below.
If i take out the tag, it goes away fine without issues.
$(function() {
$.blockUI({ message: $('#question'), css: { width: '275px' } });
$('#btnClose').cl
Yup took out the z-index too. I have it in there because when i use
the UI datepicker it goes behind the blockUI.
Still has the IE problem.
On Sep 3, 4:16 pm, MorningZ wrote:
> have you tried dropping the z-index styling? that's got to be an
> issue
>
> On Sep 3, 3:49 p
Looks like i have to put in all the tags etc... I was just
trying to run a quick test so i didnt put all the
tags in there.
When i put it all in, the unblockUI worked. I feel like a an Id10t.
-m
On Sep 3, 4:19 pm, Matthew Abbott wrote:
> Yup took out the z-index too. I have it in th
Do you know how to enable the top level links in the jdmenu? I never
could get the top level links in the menu to work once i applied the
jdmenu to a unordered list.
On Aug 21, 4:09 pm, con-man-jake wrote:
> Did it. Works like a charm! Thanks again Jack.
> jake
>
> On Aug 21, 9:27 am, con-man
Here is a plugin that may get you started.
http://bit.ly/cZQ9K
Yeah take out thetags in your example, and in IE
you should get the error i was talking about.
just leave the script tags and the div.
On Sep 4, 8:25 am, Mike Alsup wrote:
> > It seems to bug because i am using a
> > Ive tried the tag inside the and outside the like
> > below.
> > If i t
Normally you wouldnt. I just had a blank page and didnt put in all
the html tags in there.
Felt stupid afterwards. It worked in Firefox.
Anyway, it works fine now. all is good.
On Sep 4, 10:08 am, Mike Alsup wrote:
> > Yeah take out thetags in your example, and in IE
> > you should get th
looks like it
does.
http://www.datatables.net/examples/
Cheers,
Matthew
On Sep 4, 12:14 pm, Mike Alsup wrote:
> Anyone familiar with this plugin? The docs say that it supports
> colspans but it doesn't appear to do so. The script has a
> checkCellColSpan function defined but it is
http://testingspot.hostcell.net/sandbox/tests/css.jquery.test.html
it somehow doesn't work at all not even the css
does it matter where the style and scripts are in the of the document
On 9/12/09, Mike Alsup wrote:
>
>> see that code in the subj.? i'm using FF 3.5, and no matter what i
>> do, .c
ot;).css("color" : "red");
>
> should be
>
>$("p.blue").css({"color" : "red"});
>
> Any syntax error like that will stop the script dead.
>
>
> On Sep 12, 9:58 am, Matthew Rolph wrote:
> > http://testingspot.hostcell.ne
above (the pastebin links) work in FF3.5 (on OS
> X)
>
>
> On Sat, Sep 12, 2009 at 5:07 PM, Matthew Rolph wrote:
>>
>> it's still not working right so i'm getting safari and seeing if that works
>> out
>>
>>
>> On Sat, Sep 12, 2009 at 1:10 P
CSS Test<http://testingspot.hostcell.net/sandbox/tests/css.jquery.test.html>
On Sun, Sep 13, 2009 at 10:01 AM, Matthew Rolph wrote:
> i have win so yea and i figured out, for some reason,
> double quotes:
> selectors(i.e. $("p"))
> single quotes:
> handlers or at
New Link: CSS<http://testingspot.hostcell.net/sandbox/tests/jquery/css.html>
> On Sun, Sep 13, 2009 at 10:01 AM, Matthew Rolph wrote:
>
>> i have win so yea and i figured out, for some reason,
>> double quotes:
>> selectors(i.e. $("p"))
>>
well, i fixed that at least the source shows right now
can you see any probs. now?
On Mon, Sep 14, 2009 at 9:15 PM, Steven Yang wrote:
> hi
> this is all i see in the source of your page
>
>Ajax - jQuery Tests src="[jQuery] Re: Ajax
ue, Sep 15, 2009 at 7:05 PM, Matthew Rolph wrote:
>
>> well, i fixed that at least the source shows right now
>> can you see any probs. now?
>>
>>
>> On Mon, Sep 14, 2009 at 9:15 PM, Steven Yang wrote:
>>
>>> hi
>>> this is all i see in the so
Hey,
At current I'm building a site in co-operation with 5 of my close
friends. On our homepage (See here: http://www.dotcommon.co.uk/index.html).
You'll notice a bio box with 6 names down the left hand side and,
thanks to jQuery, when these are clicked the bio box loads different
information abo
Cheers for the help guys.
I get exactly what you're driving at, but as I am a complete
Javascript newb I have no idea how to put all of that code into my
script. If you could be a bit more specific that'd be awesome.
Cheers again, Matt.
;
link further down goes somewhere else.)
Regards,
Matthew
2009/4/27 Tom Worster
> On 4/26/09 9:12 AM, "mattvick" wrote:
>
> > I need the list of results to appear without any of them highlighted
> > so hitting the return key submits the form without updating the t
Hey Nicolas,
Great work! I really like this idea. Maybe you can put the explanation
and examples from your email onto the web site. I've bookmarked the
page for future reference but this email really gives a quick summary on
what you are trying to accomplish and how to use it.
Thanks,
Matt Pe
I am aware that IE provides bad HTML from the innerHTML property of a DOM
element but when I duplicate a hidden template layer in my page and add the
clone to the page IE is showing some of the input tag's inner contents
within the text input area. Please see the attached screen shot.
http://www
Great job! Just a comment on the demo page. When I set the mask to
true I lose the ability to interact with the page, as designed of
course! :) Maybe you could make a timeout of like 5 seconds. Otherwise
I have to refresh the page just to test out some other things.
A suggestion I have for th
I was curious if there was a way to hit the current xhr object in the
success callback. I've been tinkering with it, and have been unable
to figure out how to do that.
The reason I ask is because I am trying to debug an application I've
been working on, and sometimes the response XML is not forma
That's what I was thinking. I'd have to set some sort of flag in the
success callback since it's executed first, and then have the complete
reference that flag and process the error accordingly.
Thanks for your help, Mike.
On Jan 7, 2:58 pm, Mike Alsup wrote:
> > I was curious if there was a wa
Thanks Marco,
Also cheers for reporting the bug with the page toolbar textbox - this
is now fixed. Download the latest here:
http://reconstrukt.com/ingrid/index.html#download
Matt
On Oct 3, 8:00 pm, "Web Specialist" <[EMAIL PROTECTED]> wrote:
> Matt,
>
> congratulations!!!
>
> Very very very
@Sharique
Yes, it'll work with .NET (just create an aspx page that spits out a
table as per the instrux), and set the 'url' param accordingly in the
options. Remember, ingrid's just making an ajax call to some more
HTML. Something like this will work:
$(document).ready(
function() {
There are actually two things to think of here.
I don't know about CF specifically but it seems that most web servers
should update their session timeout if data has been accessed in any
way. I would assume that any AJAX request to the server by the browser
would update this status.
If y
The multiple open browser window issue is an old problem for session
management and I wonder if it's been solved elsewhere.
With different browsers handling cookies differently for multiple
windows it might be hard to find a catchall solution.
Just off the top of my head:
You may want to gene
Hi Bryan,
We had this problem as well. The solution was to use jQuery's JSON
functions $.toJSON() & .parseJSON() instead of those built into the JSON
library.
Matt Penner
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Bryank
Sent: Monday, Nove
em...maybe even with 1 example.
I am not a JS guru by any stretch of the imagination, so I usually
have to follow by example.
Thanks,
Bryan
On Nov 5, 2:53 pm, "Penner, Matthew" <[EMAIL PROTECTED]> wrote:
> Hi Bryan,
>
> We had this problem as well. The solution was t
I have several options in a select element, each whose value is an
integer.
I would love to be able to select those above a threshold, such as
something like:
$("#mySelect option[value>5]")
I know I can do this with :gt(index) but I'd rather use the actual value
for less hard coding and be
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Nov 7, 2007, at 2:33 PM, Penner, Matthew wrote:
I have several options in a select element, each whose value is an
integer.
I would love to be able to select those above a threshold, such as
something like:
$("#mySelect option[val
There are several plug-ins that can do exactly this. Here are a couple:
* BetterTip
* clueTip
Matt Penner
Database Engineer II
GIS Support
[EMAIL PROTECTED]
(951) 940-6108 x10709
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of nkw
Sent: Wednesd
Hi All,
I've just posted the latest version of Ingrid datagrid plugin.
Incorporates a lot of feedback I've received over the last couple
weeks, including:
- Row selection
- Saving state (page number, column sort & direction, selected
rows)
- Exposed object model, added helper methods like
ingrid
to have folks do cross browser testing on this
> > in order to help Matt truly iron out any issues. People with Safari 2.x
> > installed would be especially helpful.
>
> > Rey
>
> > matthew knight wrote:
> > > Hi All,
>
> > > I've just posted t
ample, and watch the request/response times.)
Cheers,
Matt
On Nov 12, 7:47 am, matthew knight <[EMAIL PROTECTED]> wrote:
> Excellent, thanks Karl for that feedback - I'll make a note of it.
>
> Anything else, let me know
>
> Matt
>
> On Nov 11, 11:57 pm, &quo
I don't see anything physically wrong with a nested $.getJSON. I
suspect either your code or the return results.
I would extract the two callback functions into actual functions rather
than just inline. Then I think you should be able to use Firebug's
breakpoints on the callbacks to step throug
Wow, this is great! I can't wait to use it on some of my apps. Great
job!
Matt Penner
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Josh Nathanson
Sent: Thursday, November 29, 2007 12:46 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] [A
You can grab each cell by its individual row and column. This is what
I've used in the past and it worked quite well.
var cell = $('tr:eq(' + row + ') td:eq(' + column + ')');
Where row and column are variables defined above.
Matt Penner
-Original Message-
From: jquery-en@googlegroups
Heh, great job! :)
Matt Penner
Database Engineer II
GIS Support
[EMAIL PROTECTED]
(951) 940-6108 x10709
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Stefan Petre
Sent: Wednesday, December 19, 2007 12:41 PM
To: jquery-en@googlegroups.com
Subj
Very nice! I've been wanting antialiased corners for a while.
Any possibility of working with Dave Methvin and "merging" the two
corner plug-ins? I can see this being a source of confusion for other
users.
Good job!
Matt Penner
-Original Message-
From: jquery-en@googlegroups.com [mail
Someone else can probably give a better definition of AOP, but a very
simplistic view is the ability to add additional functionality (aspects)
to your code. This functionality is contained in its own methods and
objects, leaving your original code nice and clean.
Here's an example I heard/read
Is jQuery working at all? I've noticed that WordPress can be very
intrusive when you put javascript in posts. When I would first write a
post with js embedded it would work, but the instant I edited it online
the "helpful" editor textbox would reformat my js and break it.
If you want your galle
I am trying to upgrade Stefan Petre's Date picker to work with Jquery
1.3.1.
http://www.eyecon.ro/datepicker/
In IE7 I am getting a 'Unknown runtime error'. I have been able to track
it down to an append 'cal.find('tr:first').append(..', but have not made
any additional progress. Any ideas wh
This is slightly off topic but related.
I am tasked with migrating our organization's static website to a more
dynamic one with plans for several web applications for our users. I
plan on using jquery as my js foundation.
Our users are various school districts which may have a variety of
b
Hello everyone,
I was wondering what the "proper" way to check if a checkbox is checked is
using jquery?
I've run into two methods... both of which appear to work fine in
IE,FF,Chrome and safari.
http://jsbin.com/ifoka/edit
Assuming that I have two checkboxes, one with an id of test1 and one wi
Hey Karl,
I was interested in this question also and read your great response. As
one of the authors your thoughts hold a lot of weight for me. Thanks
for the recommendation almost against your older book. This is what I
love about this community. It's about the tools and the community
users/c
Wow! This is great! Good jo!
Matt Penner
Database Engineer II
GIS Support
[EMAIL PROTECTED]
(951) 940-6108 x10709
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of mjijackson
Sent: Friday, January 25, 2008 1:45 AM
To: jQuery (English)
Subject: [
1 - 100 of 102 matches
Mail list logo