Probably changing
$("tr #button").click(function(){...
to this
$("tr #button").click(function(){
$("select", this).html("012345");
return false;
});
Will fix it. You need to find the select element in the right context,
remember that jQuery's selectors work like CSS.
Al
On Feb 25, 4:12 pm, ricardobeat wrote:
> have you seen raphaeljs.com?
Just having a look at this now. Seems like it might boil down to
either using this, or going Java Applet with a library like
http://www.jgraph.com/jgraph.html
$('#id')
.add(myJQObj)
.add(myotherJQObj)
.hide()
On Feb 24, 8:51 am, Bisbo wrote:
> Hi there,
>
> I can't seem to find a way to perform the same jQuery method on
> multiple jQuery objects. I have tried using commas and passing arrays
> to the jQuery function but neither works.
>
> $( $('#
So, the presence of the DD is what makes it difficult?
Java applets have a bit slow loading time, and afaik it can't interact
with the rest of the page.
Using iecanvas.js you would have to write a single code (compliant
with the canvas specs) that would work for both IE and FF - but the
support in IE might not be complete.
have you seen raphaeljs.co
On Feb 24, 6:10 pm, Jon Sagotsky wrote:
> Just to clarify, $("p", "#foo") would be meaningless
That's not true. $('p', '#foo') has the exact same result as $('p', $
('#foo')), the context is executed just as well.
Turns out their was a newer version of the plugin which I downloaded
and have now loaded up to the site. From what i can understand, that
version uses the proper format you referred to.
However, i am still getting the errors on jquery.min.js and main.js
(which is google maps api).
On Feb 24, 4:
Hi,
I am trying richtext editor the problem is on every button click (Like
Bold or Code) how to send the tags([b][/b] or [code][/code]) to the
last mouse or courser point in the textarea
Thanks and regards,
Anjith
Ron,
It sounds like the CSS just isn't pointing to the right place. Do you
have a link I can view?
-Eric
On Feb 23, 4:27 pm, Ron wrote:
> Hi,
>
> I'm using the SimpleModal library to display help text in a modal
> popup. We are using the a.closeimg in the stylesheet to display a
> modified X
I have hundred or css class need that, I am afraid that it's better to
search which has the property.
On 2月25日, 下午12時18分, Steven Yang wrote:
> according to your case
> use$(".box")
> or
> $("div .box")
> since all elements with class "box" will have background image
according to your case
use$(".box")
or
$("div .box")
since all elements with class "box" will have background image
I think I see what's going on now...
I have a div with the class of "section"
at the bottom of the page which is surrounded
by another div that has a style of "display:none;".
That confuses the browsers.
If I also set the div with the class of "section"
to "display:none" while it is inside the
for example
.box {
background-image: url(images/png_back.png);
}
Can I filter the div which have backround-image?
I set up a test page locally, too, and the selector
does work. Something elsewhere in my code is making
this malfunction. Got some digging to do...
Rick
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf
Of Rick Faircloth
Sent: Tuesday, F
Thanks for the reply, Karl.
I ran this code:
$(document).ready(function() {
$(‘#add-section’).livequery(‘click’, function() {
$.scrollTo(‘div.section:last’, 1000);
if ( $('div.section:last').length > 0 )
{ alert('yes'); }
else
{ alert('no'); };
The click event is bubbling, try adding event.stopPropagation()
On Feb 24, 1:07 pm, Chris wrote:
> Hello so I am trying to create an image that once clicked will trigger
> the file input field but I am getting an error Here is what I am
> doing:
>
> # Set the image in the div
> $("#form_containe
Hello,
I'm looking for a plugin that will autocomplete text in a textarea.
Rather than a drop down menu I'd like to have the autocompleted text
appear hilighted inside the textarea.
Can anyone point me to a plugin that does something along these lines?
-Matt
On Feb 25, 6:20 am, robing wrote:
> My problem isn't strictly jquery but more javaScript.
> In IE6, 7 i can insert text on a range using pasteHTML().
>
> in IE8 i can only pasteHTML() when text is selected and not when just
> the cursor is placed.
>
> see here for very simple example.
>
> http:
Apologies for the last post, I clicked send before I was ready.
Check to see that the 'div.section:last' selector actually returns a
valid jQuery object. (So check that $('div.section:last').length > 0)
Karl Rudd
On Wed, Feb 25, 2009 at 1:40 PM, Rick Faircloth
wrote:
> (‘div.section:last’) ??
Try putting the bulk of your code in a separate function:
$(function() {
// do check on document ready
myFunction();
// make click work
$('#Professor').click(myFunction);
});
function myFunction() {
if ( $('#Professor').get(0).checked ) {
$('#ProfessorField').show();
The scrollTo function takes
On Wed, Feb 25, 2009 at 1:40 PM, Rick Faircloth
wrote:
> (‘div.section:last’) ???
>
>
>
> I’m trying to use it in this code:
>
>
>
> $(document).ready(function() {
>
>
>
> $(‘#add-section’).livequery(‘click’, function() {
>
> $.scrollTo(‘div.section:la
('div.section:last') ???
I'm trying to use it in this code:
$(document).ready(function() {
$('#add-section').livequery('click', function() {
$.scrollTo('div.section:last', 1000);
});
});
FF3 does nothing with it.IE7 scrolls close to the top
of the page, r
On Feb 24, 7:18 am, shapper wrote:
> Hello,
>
> I have 8 inputs of type checkbox.
>
> On 4 of them (A, B, C and D) I want to deselect the other three when
> one is selected.
>
> For example, if I select A I want B, C and D to be deselected.
> If I select C I want A, B and D to be deselected.
>
On Tue, Feb 24, 2009 at 4:16 PM, rasit wrote:
>
> Hi, all!
> Homepage of JQuery says that JQuery is 19 KB (minified)
Actually if you look closely it says Minified and Gzipped. The minified part
takes it from 120KB to 55KB. The gzipping part takes it from 55KB to 19KB,
but is undone by your web
Hello everyone,
Recently I have just created a site using CodeIgniter with JQuery. And
in the past, it worked just fine. But recently I don't know why I got
error message in FireFox(3.0.6) through firebug and there is no result
displayed in my site. However, it works just fine in IE.
Are there a
I checked and did not find prob with z-index.
So the A.P. was not covering the div containing the form buttons.
(.panelpod).
It was to do with an alpha image loader nonsense that was interfering
with .panelpod containing buttons.
/*--- alpha image loader nonsense causing the probs. ---*/
* htm
Hello so I am trying to create an image that once clicked will trigger
the file input field but I am getting an error Here is what I am
doing:
# Set the image in the div
$("#form_container").css({"background-image": "url(input.png)",
"width": "126px",
I know, not possible to do without hidden iframe hacks and such and
there already exists a couple of extensions which add this
functionality by abstracting these hacks out of our sight... however,
I ran across this article here:
http://igstan.blogspot.com/2009/01/pure-javascript-file-upload.html
Hi, all!
Homepage of JQuery says that JQuery is 19 KB (minified), but download
link goes to a file which is 55 KB. Does it need to be compressed? If
yes, how can I compress it?
Thanks,
Rasit
Liam,
$() can take one or two arguments. The first argument is what your
searching for. The second argument is the context in which you are
searching. If you only use one argument, the second defaults to the
whole dom.
$("#foo p") searches for all p in #foo. It does this by getting every
p e
I want to point out a couple things:
1) You should always use $("#foo").find("p") in favor of $("p", $
("#foo")) - the second one ends up executing $(...) 3 times total -
only to arrive at the same result as doing $("#foo").find("p").
2) I generally dislike saying that there's one good way to do a
Hello,
I have the following:
$('#Professor').click(function(){
if ( this.checked ) {
$('#ProfessorField').show();
$('#SubscriptionsField').show();
} else {
$('#ProfessorField').hide();
$('#SubscriptionsField').hide();
}
})
Basically on a
I started working on a version that will work on any child elements. For
example:
A item
B item
Some stuff under the B item
C item
That would result in nav items for A, B and C, but would not handle a
case, because is not nested inside of (ie: the 's are
also child element
Hi Sam,
Sorry about taking a while to get back to you about this: for some
reason this message didn't show up in my inbox til today. Very strange
(this one and another one). I have a new rev of listnav almost ready
and am expecting to release it this week. Would you like to try the beta
ver
Basically all I am doing is on click I am changing the class of the a
tag to have a different background image then the class that is
applied on load. I remove the initial class and replace it with the
new one. Both have different background images but for some it isn't
working. The class changes
Basically I have 8 roles. I need to be able to select one or many.
However in 4 of them one can only be selected.
I could separate it but since it's all for the same thing ...
... this is why I am not using radio .. I need to be able to select
more than one.
It is working
Thank You,
Miguel
On
Thanks MorningZ,
strange that that is not the error I'm getting at all.
My errors have pointed a break in the jquery.1.3.1.min.js (which
seemed odd).
I completely removed the references to dynacloud, but still get the
jquery and google maps errors.
I've got the debugging on in IE, that's how i'
Here's a thread that will help you out:
http://groups.google.com/group/jquery-en/browse_thread/thread/9889ebd5e10c9122
Create the table with any content, but leave out the
Then use the looping method with the arrays. At the beginning and the
end of the array before and after your loop, include
On Feb 25, 8:24 am, morgancodes wrote:
> Hello,
> I'm trying to squeeze out every last bit of performance I can from
> IE6, and want to make sure there isn't a faster way than what I'm
> doing.
>
> I'm doing about 180 iterations of somethig like the following
>
> parentElem = $("parentTable");
> Is there any way to do this faster?
Create the full table in a string, including the tags, and
insert it into the document at one time. Each time you insert an
element into the document, the browser does some calculations and
checks. By doing it in one insert you save it work.
Whenever you're
Another thing I was wondering is there a way to slow down the speed of
the carousel when the mouse hovers over it? There is such a small area
where it actually moves at a reasonable speed, outside of that it
moves extremely quickly and the 'speed' parameter seems to make no
difference in it.
Is t
solved... wasn't liking my floating divs...
On Feb 25, 9:48 am, Paul Georges wrote:
> i'm trying to add some html to the label area of tabs in order to add
> an icon and also some divs that i can access at later times to modify
> easily.
>
> any suggestions on how to do this?
>
> at the moment i
bump - if someone can easily clarify I'd love a response
On Feb 24, 8:47 am, greghauptmann wrote:
> still getting a bit confused with options here, can I ask:
>
> • re "iecanvas.js" - is there a way to effectively include this in
> one's project then only write one (1) set of code (javascript, o
Hi there,
I'm trying to write a news ticker script that horizontally slides 1
item from right to left in a box. Most news ticker scripts use
multiple items for this, but my needs are somewhat different.
Well I've kinda got it working, except for when I hover over it. Then
when the cursor goes aw
Hi there,
I'm trying to write a news ticker script that horizontally slides 1
item from right to left in a box. Most news ticker scripts use
multiple items for this, but my needs are somewhat different.
Well I've kinda got it working, except for when I hover over it. Then
when the cursor goes aw
i'm trying to add some html to the label area of tabs in order to add
an icon and also some divs that i can access at later times to modify
easily.
any suggestions on how to do this?
at the moment i'm doing something like this
$("#tabs").tabs('add' , '#' + tag, '' + nick + '');
it does what i
Hi Mike,
Loving the multi-effect. Would it be possible to use them in this
way...?
In the same slideshow:
left/right arrows make the slides slide left/right
up/down arrows make the slide slide up/down
Thanks
Andrej
In times like this, turning on Script Debugging in IE is very helpful
(tools/options/advanced/uncheck-"disable script debugging")
pulling up the link above with debugging on pointed out the problem
right away:
"Error: '$' is null or not an object"
for the line
if (typeof $.wordStats != 'undefine
Hello,
I'm trying to squeeze out every last bit of performance I can from
IE6, and want to make sure there isn't a faster way than what I'm
doing.
I'm doing about 180 iterations of somethig like the following
parentElem = $("parentTable");
for(var i = 0; i<400; i++){
$(tableRowHTML[i]).appen
yup figured it out, thanks guys
finally i don't change the template... i do something like this.
// add a tab with the the nick specified
$("#tabs").tabs('add' , '#' + tag, '' + nick + '');
// correct the holding div
$("#" + tag).attr("style", "width: 95%; height: 80%;");
// add the content
$("
Dear folk ,
I have a Link and it makes ajax call , so the problem is ,whenever
somebody clicks tons of time inn the Link it crashes and the AJax it
will not work , so I solved this Problem with using of the Boolean
variable and make it True and then the event is trigered cahnge it to
false so it
Cool. Thanks for the ticket.
On Feb 23, 7:03 pm, Dave Methvin wrote:
> If the object has a length property, it is assumed to be Array-like.
> There are several Objects that have Array-like behavior, like jQuery
> objects, DOM NodeList objects, and Function.arguments.
>
> In this case, you've spe
Some my exp!
Aslo, take a notice that
Something lieks this:
messages: {
name: {
required: "You must provide a Campaign Name.",
minlength: "Your Campaign name must be at least 3
characterss long."
},
startDate: {
required: "You mu
So I got a version up and running, obviously you'll see by looking
this that it isn't a complete work, but if fails completely in IE, but
works in FF & Chrome.
http://ec2-75-101-196-181.compute-1.amazonaws.com/v2/
I've picked it apart and put it back together, and it seems I just
keep ending up
Thank you..i just figured that out..Appreciate all those that
commented..
Thanks
On Feb 24, 2:29 pm, James wrote:
> Sorry I missed a comma after startDate and before endDate:
>
> messages: {
> name: {
> required: "You must provide a Campaign Name.",
> minl
The problem is t[1] is now an array of objects, so you have to access
the text and value attributes of the objects by their array index.
Here are the buildThemesList function and the friendlyLevels functions
rewritten to account for that.
function buildThemesList(){
Sorry I missed a comma after startDate and before endDate:
messages: {
name: {
required: "You must provide a Campaign Name.",
minlength: "Your Campaign name must be at least 3
characterss long."
},
startDate: {
required: "
Well, I can't figure out how to delete this, but there was nothing
wrong with the js. Apparently it's my lack of knowledge of php. I
needed to write to the db as an escape string and I wasn't.
Until next time...
messages: {
name: {
required: "You must provide a Campaign Name.",
minlength: "Your Campaign name must be at least 3
characterss long."
},
startDate: {
required: "You must provide a start date."
}
endD
Documentation and a live demo are available below:
http://eric.garside.name/docs.html?p=jstore
http://eric.garside.name/demo.html?p=jstore
I've only been able to do a full round of testing in Firefox on Linux,
so if you've got some time and any other browsers (IE especially), and
feel like testi
Alright, so here's the code I'm using (minus all the fluff):
$.ajax({
type: 'POST',
url: 'add-item.php',
data: 'desc='+ $('#description').val()
}); return false;
With #description being the id of my input field on the form.
Everything works properly except when I thro
sorry..new to the group thing here as well...
i have narrowed it down to this piece of code.
when i remove it all js works as written..
$(document).ready(function() {
$('#create_campaign_form').validate({
rules: {
name: {required: true, minlength: 3},
startDate:
Hi Joel,
First up, great plugin - it's the best I've found.
I have a problem though. For some reason my menu appears transparent
and no amount of hacking and fixing seemed to do the job. Would you
mind telling me how I can make the menu opaque? The transparency of
the menu causes it to get in th
I think $(window.location.hash) is what you're after here.
(https://developer.mozilla.org/en/DOM/window.location)
-dan
On Feb 24, 8:11 am, brian wrote:
> Doesn't this work?
>
> $('#' + location.target).css('background',
> 'url(fade-yellow.gif)').css('font-weight', 'bold');
>
> On Tue, Feb 24,
My problem isn't strictly jquery but more javaScript.
In IE6, 7 i can insert text on a range using pasteHTML().
in IE8 i can only pasteHTML() when text is selected and not when just
the cursor is placed.
see here for very simple example.
http://robing.xtools.co.nz/demo_cms/test_editor/
any ide
No problem, Dave. Glad I could help. And congrats on the plugins.
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Feb 24, 2009, at 2:57 PM, Dave Stewart wrote:
Hooray!
That's it sorted. Thanks again Karl :)
I have two sortable lists connected to each other using:
$("#listOne").sortable({
connectWith: ["#listTwo"]
});
$("#listTwo").sortable({
connectWith: ["#listOne"]
});
What I am looking for is a way to select ALL items in the first list and
magically move them all into the second list. Ess
Hooray!
That's it sorted. Thanks again Karl :)
Hi
I'm getting an error in IE6 using jQuery 1.3.2 that was not present in
1.3.1. The HTML file is
http://www.w3.org/1999/xhtml";>
IE6 problem selector
$(document).ready(function() { // Set
up DOM-ready functions
On Tue, Feb 24, 2009 at 2:35 PM, Bob O wrote:
>
> So im stumped..I have my jquery file in the headers, and it works in
> Opera, Safari, FF on mac, and FF on Windows, but i get nothing in
> IE..its there, its just broken.
We're not getting much, either. Care to elaborate?
More info is needed. Either a sample link of it not working or code
and versions of files.
On Feb 24, 9:35 am, Bob O wrote:
> So im stumped..I have my jquery file in the headers, and it works in
> Opera, Safari, FF on mac, and FF on Windows, but i get nothing in
> IE..its there, its just broken.
So im stumped..I have my jquery file in the headers, and it works in
Opera, Safari, FF on mac, and FF on Windows, but i get nothing in
IE..its there, its just broken.
i recently added the validation plugin?
could there be something im missing?
There is no official cdn for plugins, except for jQuery UI, which is
hosted by Google as well
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Feb 24, 2009, at 9:03 AM, Oskar Rough wrote:
Hi,
I'm really glad it's possible to use the Google hosted jQuery
ok, I just set your Subscription type to No Email. Let me know if you
run into any more problems.
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Feb 24, 2009, at 8:37 AM, sunshine gerodias wrote:
can anyone also help me with mine? it's flooding my email a
Dear group,
I made a simple website using html, css and jquery.
There are four div's that divide the website in different parts and if
your scroll position reach them they start to scroll their background
image using css()
http://variouselmts.com/development/
It works on a mac and also on a pc
I am making a form with optional fieldsets. The idea is to dynamically
apply a style to the headings above only the optional fieldsets and
allow this "controller" style to expand and contract the "optional"
div below it on click. Here is a snippet of my markup:
**begin markup snippet**
...
Key P
@Michael,
I just installed Firebug and I almost made this working.
The only problem I have is when I am adding the levels to the list as
html and as hidden input:
+friendlyLevels(t[1].text.join(', '))+''
$('').attr({'type':'hidden','name':'Themes['+i
+'].LevelCsv'}).val(t[1].value.join()).appen
Here's hoping the next one finds this:
http://docs.jquery.com/Plugins/Validation#Too_much_recursion
Jörn
On Tue, Feb 24, 2009 at 7:01 PM, kevinm wrote:
>
> Ah, makes total sense. Thanks
>
> On Feb 24, 1:01 pm, Jörn Zaefferer
> wrote:
>> $(form).submit() triggers another round of validation, res
I just watched a couple of videos on Ajaxian.com where John Resig was
talking about chaining, but it didn't sink it.
Thanks for the help. My animation works great now.
On Feb 24, 5:35 am, Stephan Veigl wrote:
> Hi Wolf,
>
> try to stop previous animations before adding a new one:
> $(this).s
Must try this. Thank you for the tip
On Feb 24, 5:11 pm, brian wrote:
> Doesn't this work?
>
> $('#' + location.target).css('background',
> 'url(fade-yellow.gif)').css('font-weight', 'bold');
>
> On Tue, Feb 24, 2009 at 9:42 AM, dccrowley wrote:
>
> >http://www.w3.org/TR/css3-selectors/#target-
Thank you!
On Feb 24, 5:31 pm, seasoup wrote:
> It is possible to write your own selectors. There are a bunch of
> tutorials around the web.
>
> here is
> one:http://www.coderanch.com/t/121354/HTML-JavaScript/Writing-custom-JQue...
>
> and here is
> another:http://www.bennadel.com/blog/1457-Ho
Ah, makes total sense. Thanks
On Feb 24, 1:01 pm, Jörn Zaefferer
wrote:
> $(form).submit() triggers another round of validation, resulting in
> another call to submitHandler, and voila,recursion. Replace that with
> form.submit(), which triggers the native submit event instead and not
> the vali
Hello,
Ive been using the Validation plugin on my site and it works
fantastic. i have run into an issue with trying to get it to perform
validation on a form that resides in a facebox.
I setup the validation the same as any other form in the site. what
could i be missing?
Actually I think it is working - I h=just wasn't removing the lable
withthe onclick
thanks
On Feb 24, 5:34 pm, kathb4 wrote:
> I am trying to use the validation plugin to validate a set of
> checkboxes which are created by my CMS (drupal) so are not changeable
> - and which look like this:
>
>
Im a little new to the plugin myself, but do you have a wrote:
> I am trying to use the validation plugin to validate a set of
> checkboxes which are created by my CMS (drupal) so are not changeable
> - and which look like this:
>
>
>
> class="form-checkbox" /> a. Tanks (Oil, fuel chemicals)
I am trying to use the validation plugin to validate a set of
checkboxes which are created by my CMS (drupal) so are not changeable
- and which look like this:
a. Tanks (Oil, fuel chemicals)
b. Rubbish
...
I want the user to select at least one of the pollutant checkboxes.
As you c
Liam,
I think you're thinking of $("p, #foo").
Notice it's the difference between two params being passed in to the
selector function (the original question) vs a single param that
happens to be a comma separated list of selectors.
On Feb 24, 6:00 am, Liam Potter wrote:
> lol, but I'm interest
I've just released a new plugin, called jStore, which provides jQuery
with a way to interface with all current and upcoming persistent
client-side storage solutions. This includes google gears, flash
(through SharedObject, or Flash Cookies), local/sessionStorage, the
WHAT_WG HTML5 database, and IE
$(form).submit() triggers another round of validation, resulting in
another call to submitHandler, and voila, recursion. Replace that with
form.submit(), which triggers the native submit event instead and not
the validation.
Jörn
On Tue, Feb 24, 2009 at 4:58 PM, kevinm wrote:
>
> James,
>
> We j
Creating a complete html string won't solve the current problem; it is
faster, and usually the way I prefer doing it also (see my note
further below though), but as I indicated in a code comment, since
this appears to be based on user input, the list (hopefully) won't be
very big, so the speed gai
Yep I am. I event tried event.stopPropagation() but still the same
thing. Can I say I hate IE?
On Feb 24, 10:26 am, Hector Virgen wrote:
> Are you passing the event to the function?
> $("#btnAddSession").click(function(event){
> // ... //
> event.preventDefault();});
>
> -Hector
>
> On
I was able to get this working. What it turned out to be was the
special plugin I was using in Expression Engine to post flash files
didn't support the wmode parameter. To get around it I manually
embedded the file and it worked perfectly.
If anyone is interested, I looked into a better Expressio
It is possible to write your own selectors. There are a bunch of
tutorials around the web.
here is one:
http://www.coderanch.com/t/121354/HTML-JavaScript/Writing-custom-JQuery-Selectors
and here is another:
http://www.bennadel.com/blog/1457-How-To-Build-A-Custom-jQuery-Selector.htm
Hope they he
Do you have an example page?
On Tue, Feb 24, 2009 at 10:20 AM, alsag...@gmail.com wrote:
>
> Yes. I placed a background-image in just about every CSS rule I
> thought would work, and nothing has worked. For example, this is the
> last one I tried:
> .sf-menu li {
>float:
Hi Miguel, not sure if it will solve your problem, but I find it is
much faster to create a complete html string and then append it
instead of doing lots of appends, which are slow.
//this handles the li content
var li =
$('').addCl
Hi! i need some help with alphanumeric plugin. I have a couple of
inputs that i want to only permit numbers to be write there, so i´m
using this plugin, but the problem is that i can only prevent user
from enetering characters non numeric in the first input, but nothing
happens with the others...
Doesn't this work?
$('#' + location.target).css('background',
'url(fade-yellow.gif)').css('font-weight', 'bold');
On Tue, Feb 24, 2009 at 9:42 AM, dccrowley wrote:
>
> http://www.w3.org/TR/css3-selectors/#target-pseudo
>
> :target makes it very easy to style a part of a page that has been
> scr
James,
We just ran into the same issue. In my case we are opening a modal
window with nyroModal. Here is the validate function.
var myValidate = $("#myform").validate({
ignoreTitle: true,
focusCleanup: false,
ignoreTitle: tr
> I would like to use Objects better, because I would like to use the
> little search code. When I try and run the program the error message I
> get from FF is 'Error: abbrs[somevar] is undefined'.
> The full script:
>
> $("#load_abbr_data").click(function()
> {
> var abbrs = {}
>
> $.getJ
Hello everyone,
I am using a clueTip to show a couple of options (checkboxes) on a
form.
It took me quite awhile to realize that the cluetip checkboxes are a
copy of the original group of checkboxes, existing outside of the
form. Therefore, the checkboxes were not submitted in their state.
So, t
1 - 100 of 170 matches
Mail list logo