[jQuery] Re: Form plugin shows just result

2007-05-10 Thread wyo
On May 9, 1:53 pm, Mike Alsup [EMAIL PROTECTED] wrote: Both pages have the same problem with this line: $('#kontakt_formular').ajaxForm (function() {alert (data[0]? 'success': 'failure')}); 'data' is undefined here. If you bind a function to ajaxError you should see an error. You need to

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-10 Thread Jan Sorgalla
You forgot to include the stylesheets. Don't forget to include both the core and skin stylesheet. Jan On 10 Mai, 06:11, Equand [EMAIL PROTECTED] wrote: it's not working... i've setup everything and all that it creates is a long horizontal list of my images with no container etc... though the

[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 http://interface.eyecon.ro/demos/slideshow.html) Here my solution:

[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: http://sorgalla.com/projects/jcarousel-0.2.0-beta/#Getting-Started But you're right, I

[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? Thanks,

[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: 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] 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(); input id=kontakt_senden type=submit value=abschicken yet I don't know how to disable it. Does anybody know? O. Wyss

[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

[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

[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

[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.com

[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

[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

[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: .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] 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] 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: 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: 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] 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: 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] 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] mailto:[EMAIL PROTECTED]: It sounds like Prototype is overwriting jQuery's $

[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 an expert

[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 On

[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

[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] 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] 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 about in

[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

[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 sensitive

[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] 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 you

[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

[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 required:

[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 even plain

[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.googlecode.com/svn/

[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 problem of a

[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 with

[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 Ⓙⓐⓚⓔ
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 paste

[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:

[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: 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

[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] 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.contentToChange

[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: 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 passed

[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: 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] 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(input type='button' id='btnEnviar'); $(#btnEnviar).remove(); Its only slightly longer, but would work in IE. Glen On 5/10/07, Harlley Roberto [EMAIL PROTECTED] wrote:

[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
This is sort of strange. $(#test).after(input type='button' id='test' value='submit'); $(#test).remove(); Works in IE $(#test).insertAfter(input type='button' id='test' value='submit'); $(#test).remove(); This doesn't. In the API it says, Same as $(#foo).after(p) Im confused. Glen On

[jQuery] Re: Changing type input on IE

2007-05-10 Thread Jeff L
untested, but something like this? $('#btnEnviar').before('input type=button id= + $(this).id + /input').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

[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 doesn't

[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. Do you know why?

[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 book, and

[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 time but

[jQuery] Re: Live Example Question

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

[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 Beeson

[jQuery] Re: Changing type input on IE

2007-05-10 Thread Erik Beeson
Right. $(#test).insertAfter(input type='button' id='test' value='submit'); Is the same as: $(input type='button' id='test' value='submit').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

[jQuery] Re: Changing type input on IE

2007-05-10 Thread Aaron Heimlich
Just to clarify, the correct way would be: $(#test).after(input type='button' id='test' value='submit'); OR $(input type='button' id='test' value='submit').insertAfter(#test); both of which say create an input (with the attributes set as shown) and insert it after #test in the DOM On

[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. I

[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] 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'

[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: $(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

[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

[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

[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] 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] 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

[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

[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(), but

[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

[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