[jQuery] Re: Problems with clueTip

2007-12-23 Thread Karl Swedberg
The plot thickens! I really don't know the reason ... tried everything. But one question more: When I use local content, I think the spiTitle option should be available for this too to split the local content into title/content or how to do that instead? thanks! I started plucking out other s

[jQuery] Re: Problems with clueTip

2007-12-23 Thread KnoxBaby
oh I missed the link to my site: http://www.jahlabs.de/jquery/test/ On 23 Dez., 22:39, KnoxBaby <[EMAIL PROTECTED]> wrote: > Thanks again for your great support and help, but it doesn't fix my > prob :( > Again my site: > > it's the newest jquery file and cluetip comes from svn! I have removed >

[jQuery] Re: general unique id for new append element

2007-12-23 Thread Guy Fraser
> On Dec 23, 5:09 am, dn2965 <[EMAIL PROTECTED]> wrote: > >> hello everyone >> i want to know a way to general unique id for new append element. like >> EXT's .id(); >> I don't think there is any equivalent in jQuery at present. It would be useful though as I've had several occasions m

[jQuery] Re: Filter out innerhtml of div #id

2007-12-23 Thread Glen Lipka
Are you trying to get it while its in the variable? Maybe put the html into a dom element first, like $("div#someHiddenDiv").append(str); thingyouwant = $("div#content").html(); Does this help? Glen On Dec 22, 2007 7:30 PM, psy* <[EMAIL PROTECTED]> wrote: > > Hello, > > I have a full html cod

[jQuery] Making BlockUI overlayCSS overridable via opts

2007-12-23 Thread Utku Altinkaya
Hi, Updating overlay css for styles like cursor etc. when calling blockUI makes sense when you use blockUI for dialog boxes as well as showing a message to the user while waiting a request to complete. Here is my suggestion. Index: jquery.blockUI.js ===

[jQuery] Re: Problems with clueTip

2007-12-23 Thread KnoxBaby
Thanks again for your great support and help, but it doesn't fix my prob :( Again my site: it's the newest jquery file and cluetip comes from svn! I have removed the spitTitle but also when I try to use rel="asd.html" without local:true and the asd.html is in the same directory, I have an empty t

[jQuery] Re: Problems with clueTip

2007-12-23 Thread Karl Swedberg
-In IE it shows sometimes in the status bar "errors on the page", and sometimes not ... I'm a little bit confused ... -In Firefox, Tooltips are shown correctly if I use title="" attribute and spitTitle in tpl/my_cluetips.js and without spitTitle and using local:true, it shows a tooltip with [obj

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-23 Thread bdee1
actually i think i just got it working - stupid me forgot to put the tag. bmsterling wrote: > > I looks fine to me, can you send me a screen shot of the issue? > > On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote: >> >> >> >> ok so i just dropped the code into a site template and it seems to

[jQuery] jCarousel with mixed thumbnail image sizes needed

2007-12-23 Thread somnamblst
As a visual artist trying to use jQuery to display art images I would like to be able to mix vertical and horizontal images that all have a maximum height but varying widths. I am using the jCarousel with Thickbox3 demo. Everything I've tried so far just mucks it up. http://sorgalla.com/projects

[jQuery] Re: Problems with clueTip

2007-12-23 Thread KnoxBaby
OK I have a test page online: http://www.jahlabs.de/jquery/test/ there are the following probs: -In IE it shows sometimes in the status bar "errors on the page", and sometimes not ... I'm a little bit confused ... -In Firefox, Tooltips are shown correctly if I use title="" attribute and spitTit

[jQuery] Falling snow plugin

2007-12-23 Thread Kia
Hi all I'm looking for a falling snow plugin. Is there such a plunin for jquery? Marry christmas! Kia

[jQuery] Re: general unique id for new append element

2007-12-23 Thread Karl Delandsheere
I'm not sure to understand your question but... If you want to generate the id attribute, you can use .attr('id', your_unique_id ) Is that what you were looking for? :) On Dec 23, 5:09 am, dn2965 <[EMAIL PROTECTED]> wrote: > hello everyone > i want to know a way to general unique id for new ap

[jQuery] Re: [PLUGIN] jqGirdView - Excellent Grid Plugin by Victor Bartel

2007-12-23 Thread Victor Bartel
Greetings, Thanks for your remarks, it is a good idea to add JSON support for jqGridView. When I'll have a little bit time in February, I'll add JSON support to this plug-in. :D -- Victor Bartel Eridius wrote: > > allowing json would be good but the support for XML still needs to be > th

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-23 Thread Benjamin Sterling
I looks fine to me, can you send me a screen shot of the issue? On 12/22/07, bdee1 <[EMAIL PROTECTED]> wrote: > > > > ok so i just dropped the code into a site template and it seems to work > fine > in IE but in firefox, it displays the gallery over and over again with > weird > layout. can youpl

[jQuery] Re: general unique id for new append element

2007-12-23 Thread Dave Methvin
> i want to know a way to general unique id for new append element. like > EXT's .id(); You could use this little plugin--untested: jQuery.fn.uniqueId = function(suffix, clobber) { if ( suffix == null ) suffix = "UniqueId"; return this.each(function(){ if ( !this.id || clobber )

[jQuery] Re: $_POST variables not passed to PHP script processing form

2007-12-23 Thread Big Moxy
I solved my problem. I didn't realize I wasn't referencing the correct variable names. On Dec 22, 5:36 pm, Big Moxy <[EMAIL PROTECTED]> wrote: > Ultimately I want this form to upload a file to a server location > based on the additional form fields on the server. I started with > sample code that

[jQuery] Re: Avoid double submit by disabling submit button causes problem in IE

2007-12-23 Thread Fayland Lam
generally I do something like here: http://www.foorumbbs.com/static/js/utils.js code: $(document.forms).each( function(theform) { // disabled the Submit and Reset when submit a form // to avoid duplicate submit $(theform).submit( function() { $('input:submit

[jQuery] Re: Attaching events to dynamic DOM IDs

2007-12-23 Thread Rabbit
Wow. Talking about mind-blowing. I read through the dummy article and I will definitely be reading it again tomorrow. And probably the next day, too. Thank you so much for taking the time to explain and share; I appreciate it! - Daniel --- On Dec 22, 5:18 pm, "Michael Geary" <[EMAIL PROTECTED]