[jQuery] Re: editable grid?

2008-05-12 Thread Kaare Rasmussen
Think I'm out of luck here, but I'm looking for a grid system that has bells and whistles similar to flexigrid (http://webplicity.net/flexigrid/), but with the ability to edit the cell contents. Some cells would be simple text, while others would need to be look up lists ( tags are fine)...

[jQuery] Re: Encoding image upload through ajax POST

2008-05-12 Thread Karl Rudd
Yeah the iframe is the way to go, that's the way the plugin does it. Karl Rudd On Tue, May 13, 2008 at 2:23 PM, hubbs <[EMAIL PROTECTED]> wrote: > > I see. > > Is there a way that I can still use ajax post, but submit that to an > iframe? Or is the only way to do it is by using a normal form

[jQuery] editable grid?

2008-05-12 Thread Shawn
Think I'm out of luck here, but I'm looking for a grid system that has bells and whistles similar to flexigrid (http://webplicity.net/flexigrid/), but with the ability to edit the cell contents. Some cells would be simple text, while others would need to be look up lists ( tags are fine)...

[jQuery] Re: Encoding image upload through ajax POST

2008-05-12 Thread hubbs
I see. Is there a way that I can still use ajax post, but submit that to an iframe? Or is the only way to do it is by using a normal form? On May 12, 8:44 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > You can't actually do file upload via AJAX, it's a security "feature", > it can be "faked" thou

[jQuery] Re: how i can access classes in my div?

2008-05-12 Thread Luciano
how i could do it`s commands? On 12 maio, 22:35, darren <[EMAIL PROTECTED]> wrote: > you could even use commas in your selector so that you aren't > repeating your statements. > > On May 12, 5:51 pm, Luciano <[EMAIL PROTECTED]> wrote: > > > hdfsuahd it`s ok ok.. > > i forgot space.."#box2. bloc-t

[jQuery] Re: FAQ for 'How do I disable enable an element'

2008-05-12 Thread AllenH
OK, thanks. The FAQ and doc page made me think I was using an approach that wasn't officially supported. I'll stick with the approach of using true and false -- that results in cleaner code in my experience so far. Allen On May 12, 4:49 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > As fair as I'm

[jQuery] Re: validate a form using jsVal script

2008-05-12 Thread JP
It's also referenced here in the source code of the demo http://docs.jquery.com/Plugins/Validation On May 12, 3:12 pm, JP <[EMAIL PROTECTED]> wrote: > on the bottom of this page > > http://jquery.bassistance.de/validate/demo/ > > I did get jsVal working, it needs to be used with validating by >

[jQuery] how can a landing page verify that the user has logged in?

2008-05-12 Thread puma
Hi, I just created a webpage that requires a username and password to be submitted in order for the user to proceed to another section of the site. My questions is how can the landing page (the page the user is redirected to after submitting the correct information) verify that the user has logg

[jQuery] Re: Encoding image upload through ajax POST

2008-05-12 Thread Karl Rudd
You can't actually do file upload via AJAX, it's a security "feature", it can be "faked" though. Try this plugin: http://plugins.jquery.com/project/form Karl Rudd On Tue, May 13, 2008 at 1:38 PM, hubbs <[EMAIL PROTECTED]> wrote: > > I have set up a form that uses the $.ajax function using PO

[jQuery] Encoding image upload through ajax POST

2008-05-12 Thread hubbs
I have set up a form that uses the $.ajax function using POST. Part of my form is an image upload dialog, using the standard file upload input box. The problem is, the upload is not working, and I think it has to do with the encoding. When I upload it with ajax, it just sends through the path t

[jQuery] Re: FAQ for 'How do I disable enable an element'

2008-05-12 Thread Karl Rudd
As fair as I'm aware, in JavaScript, the boolean values are the correct values for getting and setting the boolean attributes, like "disabled" and "readonly". When the HTML is parsed those accessing those attributes will return either 'true', 'false' or 'undefined'. The attr("disabled","disabled"

[jQuery] Re: How to do a document.getElementById("mytextbo").select() in jquery?

2008-05-12 Thread Karl Rudd
$("#mytextbo")[0].select(); jQuery(selectorString), or the "shortcut" $(selectorString), always return an array like object. To "run" the select() on it you have to access one of the "raw" elements it contains, hence the [0], which retrieves the first element in the "array". Karl Rudd On Tue, M

[jQuery] How to do a document.getElementById("mytextbo").select() in jquery?

2008-05-12 Thread eric . advincula
I've been searching and i'm not quite sure how to do it. Anyone else know how? Thanks

[jQuery] Re: how i can access classes in my div?

2008-05-12 Thread darren
you could even use commas in your selector so that you aren't repeating your statements. On May 12, 5:51 pm, Luciano <[EMAIL PROTECTED]> wrote: > hdfsuahd it`s ok ok.. > i forgot space.."#box2. bloc-top" > > On 12 maio, 20:35, Luciano <[EMAIL PROTECTED]> wrote: > > > how i can access classes in m

[jQuery] Re: Learning JQuery Chapter 6 XML parsing

2008-05-12 Thread Karl Swedberg
Here it is: http://book.learningjquery.com/scripts/jquery.1.1.3.js After going through the book and checking out the code examples, it would be a good idea to upgrade to the latest jQuery (1.2.3, soon to be 1.2.4). Quite a bit has changed -- for the better. See links to version release no

[jQuery] Re: how i can access classes in my div?

2008-05-12 Thread Luciano
hdfsuahd it`s ok ok.. i forgot space.."#box2. bloc-top" On 12 maio, 20:35, Luciano <[EMAIL PROTECTED]> wrote: > how i can access classes in my div? > example: > > $("#box1.bloc-top").click(function () { > $(".bloc-center").slideToggle("slow"); > > }); > > $("#box2.bloc-top").click(funct

[jQuery] Re: Learning JQuery Chapter 6 XML parsing

2008-05-12 Thread JQuery
Karl, I downloaded the code from http://book.learningjquery.com/2509_06_code/ but still nothing displayed when I clicked button D. I noticed that the code was referenced to . I googled "query. 1.1.3.js" but couldn't find any result. I downloaded query-1.1.3.js (noted the dash, query-1 not quer

[jQuery] how i can access classes in my div?

2008-05-12 Thread Luciano
how i can access classes in my div? example: $("#box1.bloc-top").click(function () { $(".bloc-center").slideToggle("slow"); }); $("#box2.bloc-top").click(function () { $(".bloc-center").slideToggle("slow"); }); $("#box3.bloc-top").click(function () { $(".bloc-cente

[jQuery] FAQ for 'How do I disable enable an element'

2008-05-12 Thread AllenH
Is this FAQ correct: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_disable.2Fenable_an_element.3F The example code given for the FAQ is: // Disable #x $("#x").attr("disabled","disabled"); // Enable #x $("#x").removeAttr("disabled"); but I tried this: // Disable #x $("#x").at

[jQuery] Re: Dynamic Software causing many script loads, how would one handle this?

2008-05-12 Thread Carl Von Stetten
Lee, Do the various plugins at least use the same jQuery version? If so, can you modify the plugin-specific JS file to load the required jQuery scripts only if they haven't already been loaded? You will at least need to make sure that the jQuery.js (or jQuery.min.js or jQuery.pack.js) is lo

[jQuery] Re: Is there a way of counting the number of id's with the same name, and then renaming them _1, _2, _3 etc.

2008-05-12 Thread Ariel Flesler
That's BAD html!! don't insist! :) Just kidding.. you should switch over to classes or you'll eventually face quirk after quirk. -- Ariel Flesler http://flesler.blogspot.com On 12 mayo, 17:52, Hamish Campbell <[EMAIL PROTECTED]> wrote: > Even though you can't use the id selector directly, you c

[jQuery] FlexiGrid plugin json help

2008-05-12 Thread Bryancan
I am using the flexigrid plugin from http://webplicity.net/flexigrid/. I have my codebehind generating a json result in the format expected until I call the url as a struts action in my portlet... This wraps the output with an unexpected tag which makes the grid not render. I've used fiddler to g

[jQuery] Re: validate a form using jsVal script

2008-05-12 Thread JP
on the bottom of this page http://jquery.bassistance.de/validate/demo/ I did get jsVal working, it needs to be used with validating by complete form instead of individual fields On May 12, 12:16 pm, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > That is now bundled. Where did you find the note

[jQuery] Re: jquery Lightbox Problem

2008-05-12 Thread [EMAIL PROTECTED]
Hi All! I have found out why the lightbox doesnt work on the live site. The site is hosted on Micro$oft Office Small Business site and it reads each file thats uploaded and strips any "potentially malicious" JS code. It must ready the jquery file and lightbox file and think it's malicious for so

[jQuery] [SITE] ShareThis

2008-05-12 Thread Rey Bango
ShareThis uses jQuery http://sharethis.com/ Rey...

[jQuery] Re: IE7 blocked content popup

2008-05-12 Thread Jeffrey Kretz
Tools --> Internet Options --> Advanced --> Security --> Allow active content to run in files on My Computer. The reason why this is turned off, is if you download malicious content and it executes, it could compromise your PC. Your other option is to use Firefox. JK -Original Message-

[jQuery] Release: jQuery No Spam plugin v1.3

2008-05-12 Thread Mike Branski
Finally pushed v1.3 of my No Spam jQuery plugin out the door over the weekend. For those unfamiliar, it takes an obfuscated e-mail address and turns it into a human-readable one. It's meant to be light and easy to use, and I've updated the PHP companion function for it so they're compatible, makin

[jQuery] IE7 blocked content popup

2008-05-12 Thread shnicolau
I'm currently working in a tiny demo. No server, nothing, executed locally (from the hard drive). The results is the classical msg: "To help protect your security, Internet Explorer has restricted this file from showing active content that could access your computer". To allow the blocked conten

[jQuery] example or demo of rotating css background image?

2008-05-12 Thread Toph
Is anyone aware of a working example of using jQuery to display a random css background image from a set of images?

[jQuery] Re: Is there a way of counting the number of id's with the same name, and then renaming them _1, _2, _3 etc.

2008-05-12 Thread Hamish Campbell
Even though you can't use the id selector directly, you can still use the id as an attribute selector (works in IE7 anyway). $(document).ready(function(){ $('div[id=wrapper]').each( function(i){ $(this).attr('id', $(this).attr('id')+'_'+(i+1)) } ); }); On May 13, 8:16

[jQuery] Re: Is there a way of counting the number of id's with the same name, and then renaming them _1, _2, _3 etc.

2008-05-12 Thread Ariel Flesler
> $(this).attr('class') should be $(this).attr('className') Not necessarily :) -- Ariel Flesler http://flesler.blogspot.com On 12 mayo, 08:58, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > One minor correction to the sample code below. $(this).attr('class') should > be $(this).attr('classNam

[jQuery] Re: empty class return undefined .. bug ?

2008-05-12 Thread Ariel Flesler
No Richard, that's a bug on jQuery.attr, undefined is returned instead of ''. 'class' works as well as 'className'. I hope this gets revised, it's one of the fixes of on this ticket: http://dev.jquery.com/ticket/2548 Cheers -- Ariel Flesler http://flesler.blogspot.com On 12 mayo, 09:01, "Ric

[jQuery] Re: [Validate] using metadata mulitple messages problem.

2008-05-12 Thread Jörn Zaefferer
No, currently there is no support for multiple messages via metadata. You could change the default messages to fit, but that won't give you custom messages for each field, unless you add custom methods. Jörn On Mon, May 12, 2008 at 4:59 PM, Dane <[EMAIL PROTECTED]> wrote: > > Hi, > This may be

[jQuery] [Validate] Question about Validate plugin metadata option

2008-05-12 Thread Dane
Hi, Not sure if my last post ended up having "validate" in the subject. So appologies for this repost. This may be because I'm not totally fluent with the Validation plugin yet but I'm having a problem figuring out how to specify messages for each rule via metadata. It appears that an input elem

[jQuery] Re: Release: jQuery Validation plugin 1.3

2008-05-12 Thread Jörn Zaefferer
You could use the success-option, passing a callback, as a hook to trigger validator.focusInvalid(). Something like this: var validator = $("...").validate({ // other options ..., success: function() { validator.focusInvalid(); } }); Jörn On Mon, May 12, 2008 at 5:23 PM, Alexsandro_

[jQuery] Re: [validate] Re: Release: jQuery Validation plugin 1.3

2008-05-12 Thread Jörn Zaefferer
Translations are always welcome, please mail them directly to me, preferably UTF-8 encoded. About the allowDuplicateNames modification: Could you create a ticket for that? http://dev.jquery.com/newticket Thanks Jörn On Mon, May 12, 2008 at 3:22 PM, a_claudiu <[EMAIL PROTECTED]> wrote: > > Hi,

[jQuery] Re: validate() and multiple forms that arrive via ajax

2008-05-12 Thread pedalpete
I've been having similar issues, and your solution really helped, but i think it introduced another problem. if I retrieve the same form again, so loaded the form a second time via ajax, the form tries to validate, but then submits anyway. Kinda strange. My code looks like this [ code] function

[jQuery] Re: validate a form using jsVal script

2008-05-12 Thread Jörn Zaefferer
That is now bundled. Where did you find the note? I thought I removed them.. Jörn On Mon, May 12, 2008 at 5:40 PM, JP <[EMAIL PROTECTED]> wrote: > > your website says "jquery.delegate.js - special event delegation, > required" but I don't see that in the download... > > > > On May 12, 4:40 am

[jQuery] Re: Question about validation

2008-05-12 Thread Jörn Zaefferer
There is a event triggered for invalid forms, see http://docs.jquery.com/Plugins/Validation/validate#options A usage example is here: http://jquery.bassistance.de/validate/demo/marketo/mktSignup.js $("form").bind("invalid-form.validate", function(e, validator) { var error

[jQuery] Re: Learning JQuery Chapter 6 XML parsing

2008-05-12 Thread JQuery
I tried to get around that by $(data).ready(function(){ }); but still could not access the xml data. On May 12, 10:58 am, JQuery <[EMAIL PROTECTED]> wrote: > I could see the content of the d.xml file (alert('data: ' + data), but > I could not see the alert('inside each function'). I

[jQuery] Re: jquery Lightbox Problem

2008-05-12 Thread Hilmar Kolbe
Seems like the file on the live-site is broken: http://treetment.co.uk/js/jquery.lightbox.js 2008/5/12 [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > Hi All, > > I've recently uploaded a website http://www.treetment.co.uk and I have > used the jQuery Lightbox plugin to scroll through the portfolio >

[jQuery] Re: Learning JQuery Chapter 6 XML parsing

2008-05-12 Thread Karl Swedberg
Hi, There was a problem with the particular version of jQuery that was bundled with the downloadable code from the Packt website. Take a look at the companion site for a working version: http://book.learningjquery.com/2509_06_code/dictionary.html --Karl _ Karl Swedberg www

[jQuery] Learning JQuery Chapter 6 XML parsing

2008-05-12 Thread JQuery
I could see the content of the d.xml file (alert('data: ' + data), but I could not see the alert('inside each function'). I think jquery did not recognize d.xml is an xml file. Any idea? Thanks $(document).ready(function() { $('#letter-d .button').click(function() { $.get('d.xml', functio

[jQuery] Re: Problem whith ie 7 and slideDown

2008-05-12 Thread uppe
Hi, I just wanted to let you know that I also am experiencing this. I've yet to find a solution for the problem, but I'm in the process of finding out. If anyone else has a good solution, or know if it is fixed in the upcoming release, please let us know. On 11 Apr, 22:45, nerohc <[EMAIL PROTECTE

[jQuery] jquery Lightbox Problem

2008-05-12 Thread [EMAIL PROTECTED]
Hi All, I've recently uploaded a website http://www.treetment.co.uk and I have used the jQuery Lightbox plugin to scroll through the portfolio pictures. I have tested the site locally and uploaded to http://www.ajtrichards.co.uk/clients/treetment/ and they both work fine. However, when you try

[jQuery] Re: [treeview] newbie

2008-05-12 Thread macsig
Thanks Mike, I appreciate your help On May 10, 8:55 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > It's fairly common for a syntax error message to give you the correct > location of the error but not tell you what the actual error really is. In > this case, it's missing {}. > > ... > $

[jQuery] Re: Checkbox confusion

2008-05-12 Thread Wizzud
Firstly, you were placing a click handler on the LI, not on the INPUT (the checkbox), so inside the click handler 'this' refers to the relevant LI whose checkbox has been clicked. That's fine for retrieving the text, but the LI doesn't know whether the checkbox is checked or not (as a result of be

[jQuery] Ajax Load Question

2008-05-12 Thread Chris
Hello, I am trying to create a dynamic daily calendar (see image http://img107.imageshack.us/img107/8425/picture7gv1.png) that when the user hits "next" or "last" the calendar will slide out/in to the next week of days. I have looked at this ajax load plugin (http:// www.andreacfm.com/index.cfm/j

[jQuery] Question about validation

2008-05-12 Thread Eridius
This is the thing i need to be able to do trying to use the Validation 1.2 plug. Basically i want to be able to undisabled a button if the validation fails. Now i just disable the button on click which works fine but i don't see anything in the documentation on being able to trigger a function

[jQuery] Re: Checkbox confusion

2008-05-12 Thread Chris Cotton
Wow!! that worked!!! thanks Next question. . .Why? I am not seeing the flaw in the logic of my broken and obviously less elegant solution. And how did you get away with not having to use event.preventDefault() ??? Also i don't understand why "var item = $(this).parent().text();" returns wha

[jQuery] Superfish > superfish.js + prototype.js + scriptaculous.js

2008-05-12 Thread rui gomes
Hi, I´m using the superfish vertical menu with an ajax (scriptaculous +prototype) application and the superfish was working just fine, before add this application. Now, when i do a mouseover the 2st level menu, just appears and disappears !?? here´s the link: http://marteleira.com [code]

[jQuery] Re: validate a form using jsVal script

2008-05-12 Thread JP
your website says "jquery.delegate.js - special event delegation, required" but I don't see that in the download... On May 12, 4:40 am, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > You many want to try a jQuery based validation > instead:http://bassistance.de/jquery-plugins/jquery-plugin-vali

[jQuery] Re: Hello World problem

2008-05-12 Thread Karl Swedberg
Hi Dave, that's an odd one. I just copied/pasted your html and tested it with no issues. Could there be something in your httpd.conf or .htaccess file that is interfering with it? Just a guess. Wish I could be of more help, but maybe that will point you in a productive direction. --Karl

[jQuery] Re: Release: jQuery Validation plugin 1.3

2008-05-12 Thread Alexsandro_xpt
Hi Jörn Zaefferer, I try to use your plugin in this way, take a look: http://blog.alexsandro.com.br/aa.htm And I try any way to validate inputs on cascate. Eg.: open this url http://blog.alexsandro.com.br/aa.htm click in submit. Look!, the ballon start on first input, but if you enter a valid

[jQuery] Hello World problem

2008-05-12 Thread Dave
Hi all, I am afraid that this is going to be a very simple problem, but I am completely stuck. I read the start of the tutorial [1], made the hello world page[2], and the Hello World popup does not come up. I replaced the Link with onclick="alert('Hello world')" and that worked. After reading

[jQuery] [Validate] using metadata mulitple messages problem.

2008-05-12 Thread Dane
Hi, This may be because I'm not totally fluent with the Validation plugin yet but I'm having a problem figuring out how to specify messages for each rule via metaData. It appears that an input element with 3 rules when broken will need to summarized the reason for the break in a generic message sp

[jQuery] Re: add/remove class click function

2008-05-12 Thread thekman
fixed it, just had to add return false; to the click function. On May 12, 3:19 pm, thekman <[EMAIL PROTECTED]> wrote: > Hi & thanks again for your help Dave. > Do you know of a better way to do this bit? > > div>Reviews > > i am using the href as i want to use a hover image, but if it is far > d

[jQuery] [ANNOUNCE] clueTip 0.9.7

2008-05-12 Thread Rey Bango
Karl Swedberg released clueTip plugin 0.9.7. Fixed a few bugs. http://plugins.jquery.com/project/cluetip Rey

[jQuery] Re: Syntax question regarding value of currrent element being clicked.

2008-05-12 Thread Pickledegg
Thanks andrea ;) On May 12, 12:27 pm, Pickledegg <[EMAIL PROTECTED]> wrote: > Sussed it: > > $('this').val() does the trick! > > On May 12, 12:05 pm, Pickledegg <[EMAIL PROTECTED]> wrote: > > > Heres my code: > > > This fires on any dropdown with the class 'ajaxdropdown': However, it > > errors t

[jQuery] Re: Expression/Selector question...

2008-05-12 Thread baumichel
I was confronted with a similar problem a few weeks ago and solved it by borrowing some code from the YUI library. So I composed this little plugin: (function($) { $.fn.extend({ isAncestor: function(descEl) { var ancEl = this[0]; if (ancEl.contains) {

[jQuery] Re: cross platform issues

2008-05-12 Thread Dave Methvin
On the script includes, try changing the script type from "application/ javascript" to "text/javascript" and see if that helps.

[jQuery] Re: add/remove class click function

2008-05-12 Thread thekman
Hi & thanks again for your help Dave. Do you know of a better way to do this bit? Reviews i am using the href as i want to use a hover image, but if it is far down the page & a user clicks on it to show/hide the content, the browser scrolls back to the top of the page. any ideas? On May 12, 1:

[jQuery] cross platform issues

2008-05-12 Thread Pedro fp
G'day Folks Firstly an admission that I'm a newbiw with jQuery (so please be gentle). On the site I'm working on I've so far used jQuery in two instances, one site wide & the other on only one page. The code on the page where both appear is... $(document).ready(fu

[jQuery] [validate] Re: Release: jQuery Validation plugin 1.3

2008-05-12 Thread a_claudiu
Hi, I'm using your plugin and I like it a lot but I needed to extend it a little bit. I wanted to display error messages for multiple input text having the same name but different id's. Because in the plugin is checking only the first text box matching the name I added the next lines: allowDuplic

[jQuery] Re: Java applet doesn't load when markup loaded via jquery

2008-05-12 Thread Dan G. Switzer, II
I've had a ton of problems using Applets on a page with jQuery in FF2 because FF does not like jQuery accessing the expando elements when the window.onunload event runs. I've had to revert to using an iframe to load my applets in, so that it can be embedded in a page without jQuery. Perhaps you c

[jQuery] Re: Problem with blockUI plugin

2008-05-12 Thread Mike Alsup
> On May 12, 4:06 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > > I am facing a very weird problem in IE 6.0 as the $.unblockUI() > > > function is NOT removing the created page block. I have searched for > > > solution but have not find any good solution. > > > > > Can anyone help me in t

[jQuery] Re: jQuery TShirt

2008-05-12 Thread Jason Levine
How about a jQuery tie for those of us who need to dress up when we go to work. ;-) -- View this message in context: http://www.nabble.com/jQuery-TShirt-tp17129265s27240p17187162.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: Problem with blockUI plugin

2008-05-12 Thread ashvin
On May 12, 4:06 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > I am facing a very weird problem in IE 6.0 as the $.unblockUI() > > function is NOT removing the created page block. I have searched for > > solution but have not find any good solution. > > > Can anyone help me in this and suggest me

[jQuery] Re: Problem with blockUI plugin

2008-05-12 Thread ashvin
On May 12, 4:06 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > I am facing a very weird problem in IE 6.0 as the $.unblockUI() > > function is NOT removing the created page block. I have searched for > > solution but have not find any good solution. > > > Can anyone help me in this and suggest me

[jQuery] Re: IE7, simple AJAX, and nothing - fixed!

2008-05-12 Thread Bruce MacKay
Sorry folks - I was looking in the wrong place - the file being loaded had a malformed div tag and IE7 was responding to that. Cheers, Bruce At 11:45 p.m. 12/05/2008, you wrote: On 12 Mag, 12:57, Bruce MacKay <[EMAIL PROTECTED]> wrote: > Hello folks, uhm... it's kinda strange O_o maybe t

[jQuery] Re: validate with form plugin

2008-05-12 Thread András Csányi
2008/5/12 Jörn Zaefferer <[EMAIL PROTECTED]>: > > This line is broken: "minLegth:3,". The method is "minlength" and > you've got a trailing comma which screws up any non-firefox browser. > Same in your last line of ajaxSubmit "dataType: 'null',". > > Jörn Oh my God! I'm a luser... :( What is

[jQuery] Re: empty class return undefined .. bug ?

2008-05-12 Thread Richard D. Worth
The name of the class attribute is className, so you want: $('#myid').attr('className'); - Richard Richard D. Worth http://rdworth.org/ On Sun, May 11, 2008 at 12:48 PM, Adwin Wijaya <[EMAIL PROTECTED]> wrote: > > I have code .. to check what class in every id .. > > i found that if the class=

[jQuery] Re: Is there a way of counting the number of id's with the same name, and then renaming them _1, _2, _3 etc.

2008-05-12 Thread Richard D. Worth
One minor correction to the sample code below. $(this).attr('class') should be $(this).attr('className') - Richard On Mon, May 12, 2008 at 7:22 AM, andrea varnier <[EMAIL PROTECTED]> wrote: > > On 12 Mag, 12:31, quirksmode <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I am dynamically generating ht

[jQuery] Re: IE7, simple AJAX, and nothing!

2008-05-12 Thread andrea varnier
On 12 Mag, 12:57, Bruce MacKay <[EMAIL PROTECTED]> wrote: > Hello folks, uhm... it's kinda strange O_o maybe this line: > $("#justlist,#tech").hide(); is hiding something it should not? just guessing ^^

[jQuery] Re: JQ comments (and help with a bug?)

2008-05-12 Thread Richard D. Worth
On Sun, May 11, 2008 at 3:59 PM, snoodle <[EMAIL PROTECTED]> wrote: > > It's taken me a little while, but I believe I have finally succumbed > to the power and wonder that is... JQuery. I have been bouncing from > framework to framework for about 9 months, much of that time devoted > to building

[jQuery] Re: validate a form using jsVal script

2008-05-12 Thread Jörn Zaefferer
You many want to try a jQuery based validation instead: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Just released version 1.3. Let me know if you need help with it. Jörn On Mon, May 12, 2008 at 8:10 AM, JP <[EMAIL PROTECTED]> wrote: > > In an $.ajax option beforsend, I want

[jQuery] Re: validate with form plugin

2008-05-12 Thread Jörn Zaefferer
This line is broken: "minLegth:3,". The method is "minlength" and you've got a trailing comma which screws up any non-firefox browser. Same in your last line of ajaxSubmit "dataType: 'null',". Jörn On Mon, May 12, 2008 at 11:20 AM, András Csányi <[EMAIL PROTECTED]> wrote: > 2008/5/11 Jörn Zaeffe

[jQuery] Release: jQuery Validation plugin 1.3

2008-05-12 Thread Jörn Zaefferer
A new release of the validation plugin (http://bassistance.de/jquery-plugins/jquery-plugin-validation/) is done, now at version 1.3. This release adds five more localizations and fixes a few bugs, eg. "asdf" is not a valid creditcard number anymore. Major improvements went into validating a form

[jQuery] Re: Syntax question regarding value of currrent element being clicked.

2008-05-12 Thread Pickledegg
Sussed it: $('this').val() does the trick! On May 12, 12:05 pm, Pickledegg <[EMAIL PROTECTED]> wrote: > Heres my code: > > This fires on any dropdown with the class 'ajaxdropdown': However, it > errors telling me that event.val() is not a function. How do I refer > to the current dropdown being

[jQuery] Re: Syntax question regarding value of currrent element being clicked.

2008-05-12 Thread andrea varnier
On 12 Mag, 13:05, Pickledegg <[EMAIL PROTECTED]> wrote: > How do I refer > to the current dropdown being changed, and get its value? hi :) you should use $(this).val()

[jQuery] Re: Is there a way of counting the number of id's with the same name, and then renaming them _1, _2, _3 etc.

2008-05-12 Thread andrea varnier
On 12 Mag, 12:31, quirksmode <[EMAIL PROTECTED]> wrote: > Hi, > > I am dynamically generating html which looks like this: since you're generating the html dynamically, I'd suggest you do it server side (i.e. a for loop). if that is not possible, change with , if you need the "wrapper" string, or

[jQuery] Syntax question regarding value of currrent element being clicked.

2008-05-12 Thread Pickledegg
Heres my code: This fires on any dropdown with the class 'ajaxdropdown': However, it errors telling me that event.val() is not a function. How do I refer to the current dropdown being changed, and get its value? I know $ ('#idofdropdown').val() will work, but I need to use multiple dropdowns. $(

[jQuery] Re: Problem with blockUI plugin

2008-05-12 Thread Mike Alsup
> I am facing a very weird problem in IE 6.0 as the $.unblockUI() > function is NOT removing the created page block. I have searched for > solution but have not find any good solution. > > Can anyone help me in this and suggest me something .. any clue .. any > hint? Why $.unblockUI() is not w

[jQuery] ANNOUNCE: new YCodaSlider 2.0 beta

2008-05-12 Thread Massimiliano Balestrieri
Hello jQuery(world)! I'm pleased to inform you that version 2 beta of YCodaSlider has been published. Based on coda-slider by Niall Doherty. Many thanks to Gian Carlo Mingati: Niall Doherty's Coda-Slider is a heavily modified version of his slideViewer. http://maxb.net/blog/2008/05/11/ycodaslide

[jQuery] Re: validate with form plugin

2008-05-12 Thread András Csányi
2008/5/11 Jörn Zaefferer <[EMAIL PROTECTED]>: > > What exactly are you trying to achieve? Currently the only thing I can > provide is a pointer at the example you already found... > > Jörn So, i put here my code, and i hope you can tell me what i did wrong. form: Teszt form a: b: c: $('

[jQuery] Is there a way of counting the number of id's with the same name, and then renaming them _1, _2, _3 etc.

2008-05-12 Thread quirksmode
Hi, I am dynamically generating html which looks like this: Some Content Some Content Some Content I need to write some jquery which will turn that into this: Some Content Some Content Some Content Any ideas? Dave

[jQuery] Re: IE XML Parsing problem - newb

2008-05-12 Thread Nav
On the behalf of OP, It works. Thanks.

[jQuery] How should i load the contents into a frame

2008-05-12 Thread vimal
hi guys, i have 2 frames in a page... in one frame i have a button,onclicking it i want to load the contents into another frame.. can someone help me with this regards, vimal

[jQuery] ANNOUNCE: new YCodaSlider 2.0 beta

2008-05-12 Thread Massimiliano Balestrieri
Hello jQuery(world)! I'm pleased to inform you that version 2 beta of YCodaSlider has been published. Based on coda-slider by Niall Doherty. Many thanks to Gian Carlo Mingati: Niall Doherty’s Coda-Slider is a heavily modified version of his slideViewer. http://maxb.net/blog/2008/05/11/ycodaslid

[jQuery] Re: growl for jquery

2008-05-12 Thread darren
very nice. I could see myself going way overboard with something like this. Note to self, less is more. On May 11, 4:55 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > Growl for jquery > > http://projects.zoulcreations.com/jquery/growl/ > > Rey

[jQuery] ANNOUNCE: new YCodaSlider 2.0 beta

2008-05-12 Thread Massimiliano Balestrieri
Hello jQuery(world)! I'm pleased to inform you that version 2 beta of YCodaSlider has been published. Based on coda-slider by Niall Doherty. Many thanks to Gian Carlo Mingati: Niall Doherty's Coda-Slider is a heavily modified version of his slideViewer. http://maxb.net/blog/2008/05/11/ycodaslide

[jQuery] Re: jQuery Validation Plugin

2008-05-12 Thread juro
Thank you for your answer, Joerg. What I forgot to mention is that I am using the ajaxForm plugin on that form and and that I have two different forms on the same page. Would this make a difference? Unfortunately the debug:true did not change anything, though... juro On May 11, 5:26 pm, "Jörn Z

[jQuery] drag & drop post to db

2008-05-12 Thread teazer
After way too many hours wasted, I find I have to ask for help. I am a coldFusion programmer and a neophyte at jquery. I am trying to show and post info for a drag & drop page. I need to show the coordinates and strokeNo and post to a database the same plus the div of where the draggable was drop

[jQuery] Problem with blockUI plugin

2008-05-12 Thread ashvin
Hello ALL, I am facing a very weird problem in IE 6.0 as the $.unblockUI() function is NOT removing the created page block. I have searched for solution but have not find any good solution. Can anyone help me in this and suggest me something .. any clue .. any hint? Why $.unblockUI() is not

[jQuery] validate a form using jsVal script

2008-05-12 Thread JP
In an $.ajax option beforsend, I want to call a function to validate a form using jsVal script (jsVal is here: http://jsval.fantastic-bits.de/ The home page shows examples) I tried the following: ... $.ajax({ beforeSend: showRequest, ... function showReques

[jQuery] How to specify a frame as a link's target?

2008-05-12 Thread vimal
hi guys, i have 2 frames in a page... in one frame i have a button,onclicking it i want to load the contents into another frame.. can someone help me with this regards, vimal

[jQuery] using jsVal for validation

2008-05-12 Thread JP
In an $.ajax option beforsend, I want to call a function to validate a form using jsVal script (jsVal is here: http://jsval.fantastic-bits.de/ The home page shows examples) I tried the following: ... $.ajax({ beforeSend: showRequest, ... function showReques

[jQuery] Flexigrid and data format

2008-05-12 Thread xwisdom
Hello Paulo , Can you say why you use the row data formate [id:value, cell: [col1,col2,col3]] instead of [{name:value},{name:value},{name:value}]? Does anyone one have a way to get Felxigrid to with this format: [{name:value},{name:value},{name:value}] ?

[jQuery] Re: JQ Comments and Bug help

2008-05-12 Thread snoodle
test

[jQuery] Re: JQ Comments and Bug help

2008-05-12 Thread snoodle
I already am using Firebug. I'm just learning JQ and was trying to save some time. resizeable.js works fine when summoned from the demo html, but for me, the same call to .resizeable() with the same nil arguments results in the errors I mentioned Again, the error is below (generated by Firefox)

  1   2   >