[jQuery] jQuery main library (may be fixed?)

2007-05-10 Thread Denis V. Ignatenko
1) I'm just starting to use jQuery in projects but also I'm already using Jack Slockum's JSBuilder (http://code.google.com/p/js-builder). This tool makes compression of .js files and have feature of gettin all files together. So the problem is that when I made project with jQuery (unpacked) it tro

[jQuery] Re: Storing extra information about objects

2007-05-10 Thread Erik Beeson
I'd say one of: metadata plugin metaobjects plugin expandos a variable --Erik On 5/10/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi All, I'm looking for a way to store information about a class, like the current "page" it's on (for ajax paging) and such. Essentially I would like to do

[jQuery] Re: [bug]removeClass('') removes all classes

2007-05-10 Thread John Resig
The bug tracker is back up again - feel free to add this as a bug! --John On 5/9/07, John Resig <[EMAIL PROTECTED]> wrote: I agree then, it is inconsistent. Once I get the bug tracker up, this should go in. --John On 5/9/07, Arrix <[EMAIL PROTECTED]> wrote: > The .removeClass() behavior is g

[jQuery] jQ Curvy Corners

2007-05-10 Thread Glen Lipka
http://cpns.kokopop.com/ In IE7, the top and bottom get clipped trying to make curved corners with a white border. Looks fine in FF. Plus, I get a JS error on line 313 of jquery.curvycorners.js. Any ideas what I am doing wrong? Do the boxes being rounded need background-images? Thanks, Glen

[jQuery] Re: IE fade problem

2007-05-10 Thread Joel Birch
On 11/05/2007, at 1:11 PM, Larry Garfield wrote: Another problem I've been running into is the fadeIn() effect in IE 6 (of course). When I try to fade in text, in IE 6 the text is fuzzy, as if it's out of focus. Normally it suddenly rights itself when the fade effect is complete, but if

[jQuery] Re: jquery tabs: How to make the tab contain both text and a small image

2007-05-10 Thread Klaus Hartl
[EMAIL PROTECTED] wrote: Hi, With regards to the plugin (http://stilbuero.de/jquery/tabs/), I want the text of one of my tabs to contain both text and a small, clickable "x" image on the same line. Is this possible? It seems if I put anything more advanced than

[jQuery] Re: jquery tabs: custom html structure?

2007-05-10 Thread Klaus Hartl
[EMAIL PROTECTED] wrote: Hi, I wanted to get clarification around the "Custom HTML structure" of the JQuery tabs plug-in. Specifically, it is mentioned in the docs "If some HTML structure is required that differs from the default one" Does this mean for the tabs themselves or the container h

[jQuery] Re: using jQuery with multiple libraries

2007-05-10 Thread [EMAIL PROTECTED]
Maybe try setting an arbitrary variable, like the example in the documentation (http://docs.jquery.com/ Using_jQuery_with_Other_Libraries, copy and pasted below) var $j = jQuery.noConflict(); // Use jQuery via $j(...) $j(document).ready(function(){ $j("div").

[jQuery] Storing extra information about objects

2007-05-10 Thread [EMAIL PROTECTED]
Hi All, I'm looking for a way to store information about a class, like the current "page" it's on (for ajax paging) and such. Essentially I would like to do the following: $("#object").page = 2; $("#object").page; //returns 2 However, this doesn't quite seem to work. I considered using attr()

[jQuery] IE fade problem

2007-05-10 Thread Larry Garfield
Another problem I've been running into is the fadeIn() effect in IE 6 (of course). When I try to fade in text, in IE 6 the text is fuzzy, as if it's out of focus. Normally it suddenly rights itself when the fade effect is complete, but if the text is bold then it remains out of focus permane

[jQuery] Re: Backwards positioning problem

2007-05-10 Thread Larry Garfield
Hi Dan. No change. I'm actually running into this in a number of effects, now. It happens when I try to assign the bottom left corner of a div to a given coordinate. If I assign top-left, it works fine. Bottom left gets mis-aligned in bizarre ways (as below). --Larry Garfield On Thu, 10

[jQuery] Re: Backwards positioning problem

2007-05-10 Thread Dan G. Switzer, II
Larry, What happens if you comment out the calendarTable class? When an element has a position of relative, offset positioning from any of its children is calculated from the relative element position. -Dan >-Original Message- >From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTE

[jQuery] space on your server for plugin demo?

2007-05-10 Thread Shelane
I have a plugin posted and available on google code, but I don't have a place to put the demo page. It will require any middleware application server. I can write in lasso, php, or jsp. The demo file itself should only be about 20k with code and the plugin is less than 8k. If someone is willin

[jQuery] Refreshing Thickbox

2007-05-10 Thread Trav Johnston
Hi, The setup -- I am using the Thickbox plugin to show a ajax generated table. Above the table but within the Thickbox I have an input form to add a new record to the table. The Issue How do I keep the Thickbox open and refresh the ajax table when a new record

[jQuery] Re: dynamic content load into div

2007-05-10 Thread Shelane
I still make the recommendation that you write a function (with a name) that does the binding on the called page and place that in the callback function of the load. mybindingfunction = function(){ // look for the a tags in the body of the new page and bind } originalbinding function(){

[jQuery] Re: $("input").val("") throws exception

2007-05-10 Thread John Resig
Excellent, glad to hear it! --John On 5/10/07, Giant Jam Sandwich <[EMAIL PROTECTED]> wrote: John, I just wanted to let you know that I grabbed the most recent release of jQuery, and everything I had been working on up until that point (a whole lot of jQuery), works just fine. A great testam

[jQuery] dynamic content load into div

2007-05-10 Thread Paulo Gabriel Antunes
well, i'm having some trouble running my load function on IE6+. it works fine on FF. there's 2 load functions: 1) one gets the command from div #menu and loads it into div #total. 2) the other one get the command from div #total and loads it in itself (#total). and number 2 is not working on IE

[jQuery] Re: $("input").val("") throws exception

2007-05-10 Thread Giant Jam Sandwich
John, I just wanted to let you know that I grabbed the most recent release of jQuery, and everything I had been working on up until that point (a whole lot of jQuery), works just fine. A great testament to your efforts and the development team. Thanks! Brian On May 9, 11:16 am, Giant Jam Sand

[jQuery] Re: partially loaded ajax callback

2007-05-10 Thread Mike Alsup
Cool! I like it. Mike I have a demo, it just shows the count of characters. http://jpassoc.com/Library.html

[jQuery] Re: partially loaded ajax callback

2007-05-10 Thread Ⓙⓐⓚⓔ
I have a demo, it just shows the count of characters. But kills opera with the over 4meg ajax load, works fine in FF 2 & Safari. http://jpassoc.com/Library.html $(function(){ $.ajax( {type: "GET" ,url: '/cat.cgi?Library.xml' ,complete:func

[jQuery] Re: using jQuery with multiple libraries

2007-05-10 Thread hj
> I'm having problems getting my jquery code to execute properly. I've > read the documentation on jquery.com but i'm still receiving the error > message: "jQuery(document).ready is not a function". I had the exact same situation here, just yesterday, combining with an older (v1.3.1) version of

[jQuery] Backwards positioning problem

2007-05-10 Thread Larry Garfield
Hi all. I'm being beaten by a rather strange positioning problem that my hair would appreciate some help with. I'm trying to have a div "popup" with an ajax call when a link is clicked, and remain present until explicitly closed. That part works fine. The problem is positioning that div.

[jQuery] Re: Changing type input on IE

2007-05-10 Thread Aaron Heimlich
Just to clarify, the correct way would be: $("#test").after(""); OR $("").insertAfter("#test"); both of which say "create an (with the attributes set as shown) and insert it after #test in the DOM" On 5/10/07, Erik Beeson <[EMAIL PROTECTED]> wrote: Right. $("#test").insertAfter(""); Is

[jQuery] Re: Changing type input on IE

2007-05-10 Thread Erik Beeson
Right. $("#test").insertAfter(""); Is the same as: $("").after("#test"); Which is "insert #test after a newly created but not in the DOM input node", which doesn't do anything unless you go on to add it the DOM somehow. --Erik On 5/10/07, Glen Lipka <[EMAIL PROTECTED]> wrote: This is sort

[jQuery] Re: grabbing all href attribute values on the page - how?

2007-05-10 Thread Erik Beeson
The first one is probably more "correct". It's "all a tags whose href attribute starts with http://";, which is exactly what you asked for. --Erik On 5/10/07, stef <[EMAIL PROTECTED]> wrote: your second solution worked perfectly, didnt try the first one. thanks!! On May 10, 3:10 pm, "Erik B

[jQuery] Re: Live Example Question

2007-05-10 Thread c19h28o2
Ahhh yes, i've got it working now. Thanks for your help

[jQuery] Re: Can't set focus on element with DatePicker applied

2007-05-10 Thread Bil Corry
Chris W. Parker wrote on 5/10/2007 1:49 PM: On Tuesday, May 08, 2007 2:42 PM Bil Corry <> said: Chris W. Parker wrote on 5/8/2007 1:00 PM: $("#date").focus(); $("#date").datePicker(); Have you tried reversing it? $("#date").datePicker(); $("#date").focus(); I hadn't at the

[jQuery] Re: Autocomplete plugin

2007-05-10 Thread Shelane Enos
The list has been quiet lately about this plugin's update development. How's it going? On 5/3/07 3:00 PM, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > > Jeff Fleitz schrieb: >> That was it! It looks so simple. Thanks, Jörn. >> > Ok, cool. >> I just received John Resig's Pro JS Techniques

[jQuery] Re: Can't set focus on element with DatePicker applied

2007-05-10 Thread Chris W. Parker
On Tuesday, May 08, 2007 2:42 PM Bil Corry <> said: > Chris W. Parker wrote on 5/8/2007 1:00 PM: >> $("#date").focus(); >> $("#date").datePicker(); > > Have you tried reversing it? > > $("#date").datePicker(); > $("#date").focus(); I hadn't at the time but I just did and it works.

[jQuery] Re: Live Example Question

2007-05-10 Thread Jeff L
basically it's saying to show it if it's hidden, or hide it if it's visible. see more info here: http://www.jquery.com/Selectors#Custom_Selectors_2 On 5/10/07, c19h28o2 <[EMAIL PROTECTED]> wrote: > > > Thanks, > > can you please explain the why the p.firstparagragh has :hidden beside > it? it d

[jQuery] Re: Changing type input on IE

2007-05-10 Thread Jeff L
untested, but something like this? $('#btnEnviar').before('').remove(); Jeff On 5/10/07, Harlley Roberto <[EMAIL PROTECTED]> wrote: Hi, I need to do this: $("#btnEnviar").attr("type", "button"); But accordind to my googled, I think that it's not possible on IE http://dev.jquery.com/ticke

[jQuery] Re: Changing type input on IE

2007-05-10 Thread Glen Lipka
This is sort of strange. $("#test").after(""); $("#test").remove(); Works in IE $("#test").insertAfter(""); $("#test").remove(); This doesn't. In the API it says, "Same as $("#foo").after("p")" Im confused. Glen On 5/10/07, Glen Lipka <[EMAIL PROTECTED]> wrote: What about finding the elem

[jQuery] show() pops upon element twice

2007-05-10 Thread lagos.tout
Hi, I've got this weird thing where whenever I call show(), the DOM element it's being called on pops open twice! I've narrowed down the area of the code that seems to run twice to the following section in jquery.js. (starting line 1575) animate: function( prop, speed, easing, callback ) {

[jQuery] Re: Changing type input on IE

2007-05-10 Thread Glen Lipka
What about finding the elements, and removing them, and inserting new inputs with the right type? $("#btnEnviar").insertAfter(""); $("#btnEnviar").remove(); Its only slightly longer, but would work in IE. Glen On 5/10/07, Harlley Roberto <[EMAIL PROTECTED]> wrote: Hi, I need to do this: $("

[jQuery] Re: Live Example Question

2007-05-10 Thread c19h28o2
Thanks, can you please explain the why the p.firstparagragh has :hidden beside it? it doesn't work for me but $("div.contentToChange p.firstparagraph").hide("slow"); does? Thanks

[jQuery] Changing type input on IE

2007-05-10 Thread Harlley Roberto
Hi, I need to do this: $("#btnEnviar").attr("type", "button"); But accordind to my googled, I think that it's not possible on IE http://dev.jquery.com/ticket/120 How can I do to solve my problem ? Regards, Harlley -- www.syssolution.com.br ---

[jQuery] Re: jQuery.validator.addMethod How To

2007-05-10 Thread JMan
On May 10, 2:37 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > JMan schrieb:> Hello, > > > I am using the form validation plugin and I am stuck on the addMethod. > > I have created a method using the addMethod function, in this I have > > an ajax call to a server side page that validates the pa

[jQuery] Re: Live Example Question

2007-05-10 Thread Matt Stith
You can right click and click View Source to see the source code of the page, just search around untill you find a div with the class of "contentToChange", and inside of that, a 'p' with the class 'firstparagraph' On 5/10/07, c19h28o2 <[EMAIL PROTECTED]> wrote: Hi, On the jquery live examples

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread thomasdeater
On May 10, 1:58 pm, Bil Corry <[EMAIL PROTECTED]> wrote: > > I added "mouseover" and it worked a little better than onblur alone. > > - Bil Just made another updated. Here's the change log: Added "onpaste" event handler for IE and "oninput" event handler for Mozilla. This should cover most ins

[jQuery] Live Example Question

2007-05-10 Thread c19h28o2
Hi, On the jquery live examples site http://www.jquery.com/Tutorials:Live_Examples_of_jQuery example B - which is 2 buttons which slide some text into and out of a paragragh. The code for the example is... $("div.contentToChange p.firstparagraph:hidden").slideDown("slow"); $("div.contentToChan

[jQuery] Re: toggleClass and {required:true}

2007-05-10 Thread Jörn Zaefferer
Luc Pestille schrieb: Can you give me an example of it in use - I'm currently just using; $("#admin-jobs").validate(); You can just replace "{required:true}" with the expression, eg. "{required:'#someexpression'}". For more specific help I'd need to take a look at your concrete usecase.

[jQuery] Re: Help on Form plugin and Form validation field

2007-05-10 Thread Jörn Zaefferer
Massimiliano Marini schrieb: Hi folks, I use the great Form Plugin of Mike Alsup with success, but in my form I need a validation of the fields (more fields are of different type). In my first step I need to validate the fields and then call AjaxForm (Form Plugin). How and wich plugin for the

[jQuery] Re: partially loaded ajax callback

2007-05-10 Thread Jörn Zaefferer
Ⓙⓐⓚⓔ schrieb: since the dev list & tickets system is down... I'll post here. What do you think of adding this code to ajax.js? it will allow better loading information for long dynamic(php,perl...) ajax requests Could you (re)post your information about the browser support? -- Jörn Zaefferer

[jQuery] Re: jQuery.validator.addMethod How To

2007-05-10 Thread Jörn Zaefferer
JMan schrieb: Hello, I am using the form validation plugin and I am stuck on the addMethod. I have created a method using the addMethod function, in this I have an ajax call to a server side page that validates the passed value. Every thing works ok except I cannot figure out how to get the new

[jQuery] Re: Stuck: with form validation + forms plugin w/ajax submit and forms options object

2007-05-10 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: While I love jQuery, I haven't used it for anything particularly complicated - I'm having a difficult time getting an ajax submitted form in to work with the form plugin and the validation plugin. I'm trying to use the validation plugin's submit handler method: submi

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread Ⓙⓐⓚⓔ
paste is a weird one! you get the paste contents in the event somewhere and yes, it's fired before the pasting is done! On 5/10/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: On May 10, 1:45 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > since your code is quick, you can also bind mouseup and

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread thomasdeater
On May 10, 1:45 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > since your code is quick, you can also bind mouseup and paste events. paste > only works on ie, > but if you don't catch up 'til blur time, I guess it's no big deal! > I did test the onpaste event in IE, but it didn't seem to work correctl

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread Bil Corry
[EMAIL PROTECTED] wrote on 5/10/2007 10:30 AM: On May 10, 6:37 am, Peng <[EMAIL PROTECTED]> wrote: If I paste text with short menu by Right-Click it isn't working. Which event bound can perfect the function? There seems not acceptable event in jQuery. I've added the "onblur" event handler.

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread Ⓙⓐⓚⓔ
since your code is quick, you can also bind mouseup and paste events. paste only works on ie, but if you don't catch up 'til blur time, I guess it's no big deal! On 5/10/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > On May 10, 6:37 am, Peng <[EMAIL PROTECTED]> wrote: > > > If I paste text

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread thomasdeater
> On May 10, 6:37 am, Peng <[EMAIL PROTECTED]> wrote: > > > If I paste text with short menu by Right-Click it isn't working. Which > > event > > bound can perfect the function? There seems not acceptable event in jQuery. > I've added the "onblur" event handler. This somewhat alleviates the prob

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-10 Thread John Resig
I've tried accessing it over https and tried my Google user name (with an without the @gmail.com), but not had any luck (probably because I am not a member). Is there a checkout only role? If not, then I could always add my plugins (if given access) if they are useful and change them to MIT/GPL

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-10 Thread Sam Collett
On May 10, 5:05 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > Yes, Google Code supports https. > > --John I've tried accessing it over https and tried my Google user name (with an without the @gmail.com), but not had any luck (probably because I am not a member). Is there a checkout only role? If

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread thomasdeater
On May 10, 6:37 am, Peng <[EMAIL PROTECTED]> wrote: > If I paste text with short menu by Right-Click it isn't working. Which event > bound can perfect the function? There seems not acceptable event in jQuery. > Good catch, Peng. I'll have to think about how to handle that.

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread thomasdeater
On May 9, 12:50 pm, [EMAIL PROTECTED] wrote: > For now, I've opted for the following: > > var container = $(settings.container); > if (!container.parent().parent().size()) { > // settings.container must not be an existing page element, > // so insert it into the DOM > ... > > } Frustratingly en

[jQuery] interface 2 plugin

2007-05-10 Thread [EMAIL PROTECTED]
Is there any news about Interface 2 plugin ? Any beta to test ?

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-10 Thread John Resig
Yes, Google Code supports https. --John On 5/10/07, Sam Collett <[EMAIL PROTECTED]> wrote: > > On May 9, 6:14 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > > The jQuery subversion repository was moved to Google Code yesterday, > > so you can reference it there, at least:http://jqueryjs.googlecod

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-10 Thread Sam Collett
On May 9, 6:14 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > The jQuery subversion repository was moved to Google Code yesterday, > so you can reference it there, at least:http://jqueryjs.googlecode.com/svn/ > > --John Is there a way to access it over https as I can't do checkouts over svn or eve

[jQuery] Re: toggleClass and {required:true}

2007-05-10 Thread Luc Pestille
Can you give me an example of it in use - I'm currently just using; $("#admin-jobs").validate(); Should I be using (where two things are required) it like this?: $("#admin-jobs").validate( required: "select#salary_lower:filled" required: "select#salary_higher:filled" req

[jQuery] Help on Form plugin and Form validation field

2007-05-10 Thread Massimiliano Marini
Hi folks, I use the great Form Plugin of Mike Alsup with success, but in my form I need a validation of the fields (more fields are of different type). In my first step I need to validate the fields and then call AjaxForm (Form Plugin). How and wich plugin for the validation fields can I do tha

[jQuery] jquery tabs: custom html structure?

2007-05-10 Thread [EMAIL PROTECTED]
Hi, I wanted to get clarification around the "Custom HTML structure" of the JQuery tabs plug-in. Specifically, it is mentioned in the docs "If some HTML structure is required that differs from the default one" Does this mean for the tabs themselves or the container holding the content after yo

[jQuery] Re: grabbing all href attribute values on the page - how?

2007-05-10 Thread stef
your second solution worked perfectly, didnt try the first one. thanks!! On May 10, 3:10 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > Untested (and I haven't slept in a while): > > $('[EMAIL PROTECTED]"http://";]').addClass('external'); > > Or more along the lines of what you were doing before:

[jQuery] Re: REMINDER: jQuery Tutorials & Documentation

2007-05-10 Thread Sean O
Yes, the fundamental {jQuery folder} bookmarks for any browser... I might throw in a shameless plug for jQueryHelp - a small windows tray program that offers code assistance for jQuery functions via the API Browser: http://www.sean-o.com/jquery/jqueryhelp/ Don't forget about the myriad of great

[jQuery] Re: Delay mouseover trigger - how?

2007-05-10 Thread joomlafreak
Thank you vey much. that exactly I "intend" to have :) On May 10, 8:29 am, spinnach <[EMAIL PROTECTED]> wrote: > there is a plugin that does exactly what you need, > hoverintent..http://cherne.net/brian/resources/jquery.hoverIntent.html > > dennis. > > joomlafreak wrote: > > Mouseover is a very

[jQuery] Re: get url?

2007-05-10 Thread BKDesign Solutions
Thanks Alex, Unfortunately I don;t know enough to pull this off. If anyone would like to contact me off list to give an estimate to create this please do. I can use curl to get the header and the filename (location) mp3 shows there...getting the url.mp3 link to page has proven beyond me Thank

[jQuery] Re: click - Basic issue

2007-05-10 Thread Mario Moura
Done Fixed with last Jquery version? Thanks Jquery Team! Regards Mario 2007/5/10, Mario Moura <[EMAIL PROTECTED]>: Ok I did window.open("http://localhost"; + ($($("a").contains($(".slideshowCaption").text()).clone().empty()).attr("href")) works fine in FF but in IE I receive the word "a

[jQuery] Re: grabbing all href attribute values on the page - how?

2007-05-10 Thread Erik Beeson
Untested (and I haven't slept in a while): $('[EMAIL PROTECTED]"http://";]').addClass('external'); Or more along the lines of what you were doing before: $('a').filter(function() { return this.href.indexOf('http://') == 0; }).addClass('external'); --Erik On 5/10/07, stef <[EMAIL PROTECTED]>

[jQuery] grabbing all href attribute values on the page - how?

2007-05-10 Thread stef
im trying to add a class to link elements that point to an external page, using indexOf("http://";) on the href attribute to see if they are internal or external links. im using the line below, but it gives an error probably cause of invalid syntax. $("a").attr("href").indexOf("http://";) if i u

[jQuery] Re: Delay mouseover trigger - how?

2007-05-10 Thread spinnach
there is a plugin that does exactly what you need, hoverintent.. http://cherne.net/brian/resources/jquery.hoverIntent.html dennis. joomlafreak wrote: Mouseover is a very sensitive trigger and if a page/section has many triggers for mouseover they all inevitably register the event on mouseover

[jQuery] Delay mouseover trigger - how?

2007-05-10 Thread joomlafreak
Mouseover is a very sensitive trigger and if a page/section has many triggers for mouseover they all inevitably register the event on mouseover and kill the show. I want to achieve a way of triggering the mouseover event only if the mouseover happens for a little longer and cancel the event otherw

[jQuery] thickbox.js + tooltip.js

2007-05-10 Thread Sebastián V . Würtz
How i can integrate thickbox.js + tooltip.js, my question is because i use first a tip, then i use thickbox to show an image but when i do this, i dont have the "title" for my picture. Any idea? -- Estoy usando la versión gratuita de SPAMfighter para usuarios privados. Ha eliminado 1727

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-10 Thread Jan Sorgalla
Thats why it is still in beta-state and not an official release yet. If you find bugs, report it here... Jan On May 10, 1:43 pm, Equand <[EMAIL PROTECTED]> wrote: > i must admit that this version has more features than the previous > one, but also has a lot more bugs... especially with msie > >

[jQuery] Re: click - Basic issue

2007-05-10 Thread Mario Moura
Ok I did window.open("http://localhost"; + ($($("a").contains($(".slideshowCaption").text()).clone().empty()).attr("href")) works fine in FF but in IE I receive the word "about" in the middle of my domain. Example: => http://localhostabout/home/admin Crazy bug! I trying find something but if a

[jQuery] Re: click - Basic issue

2007-05-10 Thread Mario Moura
Thanks Klaus You are right. Now I have another problem. $($("a").contains($(".slideshowCaption").text()) .clone().empty()).attr("href") Show me /mydir/myref works fine in FF but in IE7 dont.(about:/mydir/myref) So I am trying concatenate "http://www.mydomain"; with /mydir/myref into window

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-10 Thread Equand
i must admit that this version has more features than the previous one, but also has a lot more bugs... especially with msie On May 10, 10:28 am, Jan Sorgalla <[EMAIL PROTECTED]> wrote: > Hi Bil, > > thanks for the hint. I've updated the instructions. > > Jan > > On May 10, 9:07 am, Bil Corry <[E

[jQuery] Re: Not english characters in the ajax parameters

2007-05-10 Thread Diego A.
Most people will suggest UTF-8 (as I believe they have), but I had a similar problem with the British pound sign (£) and got around it using ISO-8859-1. See my blog post here: http://fyneworks.blogspot.com/2007/04/ajaxxml-problem-with-british-pound-sign.html On May 10, 9:03 am, "Andrew G." <[EMA

[jQuery] Re: Error: $(document).ready is not a function

2007-05-10 Thread spinnach
that also won't work if prototype overwrote jquery's $ function.. jQuery(function() { }); would work.. dennis. Fabyo Guimaraes wrote: or $(function() { }); 2007/5/10, John Resig <[EMAIL PROTECTED] >: It sounds like Prototype is overwriting jQuery's $ funct

[jQuery] Re: Error: $(document).ready is not a function

2007-05-10 Thread Fabyo Guimaraes
or $(function() { }); 2007/5/10, John Resig <[EMAIL PROTECTED]>: It sounds like Prototype is overwriting jQuery's $ function. If you want to continue using the two libraries together, you'll need to refer to jQuery's $ function as 'jQuery', like so: jQuery(document).ready(function(){ //..

[jQuery] Tablesorter. Disable sorting on column

2007-05-10 Thread Dmitrii 'Mamut' Dimandt
I have to disable sorting on the first two columns in my table. Are there any options that I can pass to tablesorter plugin that will disable sorting on selected columns? Thank you

[jQuery] Re: jQuery svn browser broken. Some documentation unaccessible

2007-05-10 Thread Klaus Hartl
John Resig wrote: The jQuery subversion repository was moved to Google Code yesterday, so you can reference it there, at least: http://jqueryjs.googlecode.com/svn/ --John I'd like to commit a few things, but it seems that the old authentication isn't working? -- Klaus

[jQuery] Re: Not english characters in the ajax parameters

2007-05-10 Thread Mike Alsup
The problem is that php cannot decode the result of JavaScript encodeURIComponent which JQuery uses. Try this: http://www.php.net/manual/da/function.utf8-decode.php

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-10 Thread Peng
If I paste text with short menu by Right-Click it isn't working. Which event bound can perfect the function? There seems not acceptable event in jQuery. thomasdeater wrote: > > > I've just released the first version of a simple plugin to add > character counters/limiters to textarea elements.

[jQuery] Re: toggleClass and {required:true}

2007-05-10 Thread Erik Beeson
gmail :) --Erik On 5/10/07, Luc Pestille <[EMAIL PROTECTED]> wrote: It must have got lost in the mountain of emails in my jQuery folder - you need eyes like a hawk to keep up with this group at the minute! Thanks Jörn - I'll take a look further. -Original Message- From: jquery-en@

[jQuery] Re: .load external page by url

2007-05-10 Thread Massimiliano Marini
> Massimiliano? From Fabico? O.o Not. From Italy. -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ "It's easier to invent the future than to predict it." -- Alan Kay

[jQuery] autoheight textarea plugin

2007-05-10 Thread weepy
Hi, AutoHeight is a jquery plugin that automatically adjusts the height of specified textareas dependant on their content. It is based on AutoExpander in Interface, but keeps the width constant. For example see : http://labs.parkerfox.co.uk/autoheight/ Jonah

[jQuery] Re: Not english characters in the ajax parameters

2007-05-10 Thread Andrew G.
Thanks, SeVIR for quick answer. The problem is that php cannot decode the result of JavaScript encodeURIComponent which JQuery uses. The soultion is to create your own function that replace such characters as ?,:, etc. Maybe you know more right way?

[jQuery] Re: toggleClass and {required:true}

2007-05-10 Thread Luc Pestille
It must have got lost in the mountain of emails in my jQuery folder - you need eyes like a hawk to keep up with this group at the minute! Thanks Jörn - I'll take a look further. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Erik Beeson Sent

[jQuery] Re: toggleClass and {required:true}

2007-05-10 Thread Erik Beeson
Luc, Did you not see this reply from Jörn? --Erik On 5/9/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Luc, there are two possible solutions: Hack the metadata plugin by setting metaDone on the "toggled" element to false. That causes the metadata to be read again. I recommend a different a

[jQuery] Re: toggleClass and {required:true}

2007-05-10 Thread Luc Pestille
Anyone? This is the last hump I need to get over in my validation! Thanks, From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Luc Pestille Sent: 09 May 2007 11:14 To: jquery-en@googlegroups.com Subject: [jQuery] toggleClass and {required:true

[jQuery] Re: get url?

2007-05-10 Thread Alexandre Plennevaux
Yes dear, use the Mathias' plugin "getParams" http://www.mathias-bank.de/2007/04/21/jquery-plugin-geturlparam-version-2/ Your printable info will be: $printed_link = $("a#link_id").getUrlParam("perma_link"); Hope this helps!! alex -Original Message- From: jquery-en@googlegroups.

[jQuery] Re: Not english characters in the ajax parameters

2007-05-10 Thread SeViR
Andrew G. escribio': Hello, everyone I have a problem with not english characters. I've created with jquery google-like search-suggest and it works perfect with englesh characters. But if I want to search not englasi words, e.g. spanish, search doesn't work correct. You need the same char co

[jQuery] Re: Disable an input element

2007-05-10 Thread Erik Beeson
To disable an input: $('#kontakt_senden').attr('disabled', 'disabled'); To re-enable it: $('#kontakt_senden').removeAttr('disabled'); --Erik On 5/10/07, wyo <[EMAIL PROTECTED]> wrote: I'd like to disable a button (input element) after an action. So far I can hide it $('#kontakt_senden').

[jQuery] Re: Disable an input element

2007-05-10 Thread Emil Ivanov
To disable it: $('#kontakt_senden').attr('disabled', disabled'); To enable it: $('#kontakt_senden').remvoeAttr('disabled'); Regards, Emil Ivanov On May 10, 11:32 am, wyo <[EMAIL PROTECTED]> wrote: > I'd like to disable a button (input element) after an action. So far I > can hide it > > $('#ko

[jQuery] Disable an input element

2007-05-10 Thread wyo
I'd like to disable a button (input element) after an action. So far I can hide it $('#kontakt_senden').hide(); yet I don't know how to disable it. Does anybody know? O. Wyss

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-10 Thread Jan Sorgalla
Hi Bil, thanks for the hint. I've updated the instructions. Jan On May 10, 9:07 am, Bil Corry <[EMAIL PROTECTED]> wrote: > Jan Sorgalla wrote on 5/9/2007 11:53 PM: > > > You forgot to include the stylesheets. Don't forget to include both > > the core and skin stylesheet. > > I included the one

[jQuery] Not english characters in the ajax parameters

2007-05-10 Thread Andrew G.
Hello, everyone I have a problem with not english characters. I've created with jquery google-like search-suggest and it works perfect with englesh characters. But if I want to search not englasi words, e.g. spanish, search doesn't work correct.

[jQuery] Re: New Plugin: Best Practices and Guideline

2007-05-10 Thread Ashish Agrawal
checkout this page on JQuery site. http://www.jquery.com/Plugins/Authoring#Best_Practices Ashish Agrawal On May 10, 1:19 am, "Rodrigo Castilho Galvão Ferreira" <[EMAIL PROTECTED]> wrote: > Which the standard so that it can publish a new JQuery Plugin? Exists > Guideline for publication? > > Th

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-10 Thread Bil Corry
Jan Sorgalla wrote on 5/9/2007 11:53 PM: You forgot to include the stylesheets. Don't forget to include both the core and skin stylesheet. I included the one stylesheet the instructions say to include: But you're right, I

[jQuery] Re: click - Basic issue

2007-05-10 Thread Klaus Hartl
Mario Moura wrote: Thanks, Works like a charm. Now I finished what I was looking for. I was working to insert a link in caption(Subtitle) of Interface SlideShow (http://interface.eyecon.ro/demos/slideshow.html ) Here my solution: $(".slide