[jQuery] Re: Shadowbox Media Viewer

2008-01-27 Thread Michael J. I. Jackson
Hi Rick, On Jan 25, 2008, at 9:03 AM, Rick Faircloth wrote: I may use this on the real estate sites that I'm working on, because I wanted a viewer that would allow large images to be displayed using maximum space allowed by the viewport of the browser. Your plug-in seems to accommodate

[jQuery] Re: Shadowbox Media Viewer

2008-01-27 Thread Michael J. I. Jackson
Hi Aaron, On Jan 26, 2008, at 2:48 AM, Aaron Heimlich wrote: Very impressive stuff! A couple of comments: 1. Everything that Mike Alsup said 2. You should take a look at the file extension -- plugin mappings in Mike's media plugin[1] as it's much more extensive than yours for roughly the

[jQuery] Is it possible to auto increment an appended value?

2008-01-27 Thread ryan
After looking in the documentation, this doesn't look possible but maybe someone can help me. Is it possible to auto increment the value on a variable that will be appended? For example the bottom code I'm appending an extra row with a text field to the table once the fields button is clicked. I

[jQuery] Re: http://jquery.com/api/ page broken

2008-01-27 Thread Charles K. Clarkson
Yansky wrote: : Hmm weird. I tried it in Opera on my machine and Firefox and IE7 on : another machine and it didn't work with any of them. I tried it again just now (7:57pm CST) with the cache disabled and, while it took a while to load, it still worked fine. Perhaps you are in the

[jQuery] facing problem to show cluetip on transparent image on Internet Explorer 7

2008-01-27 Thread [EMAIL PROTECTED]
Hi I have facing problem to show a cluetip on a transparent image under internet explorer. To make the image transparent i have used microsoft's alphaimageloader. What i have done is as follows. 1. first make the image transparent in ie using alphaimageloader. 2. attach the cluetip for that img

[jQuery] [validate] does not work with fields, which have a dot . char in their name

2008-01-27 Thread Victor Kornov
Subject pretty much states it all. Details: I have a form like this form action=register.castle method=post id=register label for=account_nameName/label input type=text id=account_name name=account.name value= class=textbox / br /span class=descrsome description/span label

[jQuery] Re: slideToggle weirdness - also Easing question

2008-01-27 Thread Rus Miller
Thanks, that looks very interesting. Is there a way to test them without downloading all the dependent files? When I open the test directory and click on one of the HTML files I get the source code. Am I missing something? On Jan 26, 8:24 pm, David Serduke [EMAIL PROTECTED] wrote: I've never

[jQuery] How to access custom div tag

2008-01-27 Thread NccWarp9
How can I reference custom DIV tag using jquery? eg, div id=1701 serial=12345 and to use something as $(12345).click ... or something

[jQuery] Image control and navigation

2008-01-27 Thread bhays
Hi, I've been unsuccessful in finding a javascript solution that is the equivalent of this: http://www.pupinc.com/browser/ Basically I would like it would function like one of the many lightboxes however, the user would remain on the same page, nothing being blocked out. Currently thumbnails

[jQuery] Re: Announce: clueTip Plugin update (0.9.5)

2008-01-27 Thread ShaymoL
Hi I am facing problem to show the cluetip with transparent image in Internet Explorer 6. I have used alphaimageloader to make the image transparent in IE 6. It makes the img an span. So i have attached the cluetip method for both img and span tag. but it doent show the cluetip when i do the

[jQuery] Re: slideToggle weirdness - also Easing question

2008-01-27 Thread Rus Miller
Very nice!! That's exactly what I wanted to do, and so simple to implement...marginTop! There was only one remaining problem and that is that I'm hiding the element initially, so it's starting from display:none, which is what I think hide() does. There is probably a better way, but to unhide

[jQuery] Re: Back Button Clears Form

2008-01-27 Thread frizzle
Maybe slightly off-topic, but do you know a way to succesfully use History/Remote while firing the events with links that are actually inside the DIV which content's gets replaced? Haven't been able sofar to find the answer... Thanks, Frizzle. On 25 jan, 20:57, cfdvlpr [EMAIL PROTECTED]

[jQuery] manipulate td children

2008-01-27 Thread lzyy
I have a table , and now I get the tr element the table looks like table tr tr_id=17 tdsomething/td tdsomething else/td td.../td /tr /table I get tr element through this way var dest_tr = $(.tbl [EMAIL PROTECTED]+tr_id+]); movie_name = dest_tr.children().eq(1).text(); in firefox it works

[jQuery] jqStripe - Simple alternating stripes with jQuery

2008-01-27 Thread Brice Burgess
I've posted yet another striping plugin which may prove useful -- jqStripe. jqStripe is not just for table rows. It features a *tiny* codebase and an adaptable row model so that it may be used on list items, divs, and anything you are able to identify with a row selector. Download and Demo

[jQuery] Re: How to access custom div tag

2008-01-27 Thread Javier Infante
El dom, 27-01-2008 a las 05:04 -0800, NccWarp9 escribió: How can I reference custom DIV tag using jquery? eg, div id=1701 serial=12345 and to use something as $(12345).click ... or something You may be searching for this: $(div[serial=12345]).click

[jQuery] Re: Can't get new Shadowbox plug-in to work. :o(

2008-01-27 Thread Michael J. I. Jackson
Use the displayNav option. It should be there by default if there's more than one piece in the gallery. Otherwise it won't show up. Michael On Jan 26, 2008, at 2:37 PM, Rick Faircloth wrote: Hey, Michael... How do I get the Next Previous Close to show up at the bottom of the page. I

[jQuery] jqStripe - download and demo

2008-01-27 Thread Brice Burgess
Apologies for the localhost link! Here goes; http://dev.iceburg.net/jquery/jqStripe/

[jQuery] jQuery pimped out Free Css Template project

2008-01-27 Thread Ty (tzmedia)
Has anyone noticed www.yooTheme? They have some interesting templates, with a variety of jS interfaces built into the layout. Check out this demo for example: http://demo.yootheme.com/ The drop down at the top selects the actual templates, and the latest offering Beyond is the one that caught my

[jQuery] Re: [validate] does not work with fields, which have a dot . char in their name

2008-01-27 Thread Tales Augusto
The rules are associated with the attribute name and not the attribute id of the field. I think the plugin does not accept attribute name with dot . Victor Kornov escreveu: Subject pretty much states it all. Details: I have a form like this form action=register.castle method=post

[jQuery] how to access an element without an id via the eventobject in the callback function

2008-01-27 Thread marcus
hi, I was playing around a it and was trying to simply catch every click- event with something like this $(document).click(function(event) { }); but what i just don't understand is how i can now access the element that was orginally receiving the click. $(this).empty() empties the whole

[jQuery] Re: Is it possible to auto increment an appended value?

2008-01-27 Thread Charles K. Clarkson
[EMAIL PROTECTED] wrote: : Is it possible to auto increment the value on a variable that will be : appended? Yes. We would need to use a closure to preserve the value of the counter between clicks. The function in the $(document).ready section can act as the closure. : For example the

[jQuery] Re: How to access custom div tag

2008-01-27 Thread Tales Augusto
Try this: $(div[serial=12345]).click NccWarp9 escreveu: How can I reference custom DIV tag using jquery? eg, div id=1701 serial=12345 and to use something as $(12345).click ... or something

[jQuery] Too many autocompleter plugins

2008-01-27 Thread Christoph Haas
Fellow earthicans... A year ago I needed an autocompleter and tried Dylan Verheul's plugin (http://www.dyve.net/jquery/?autocomplete). I found that it lacked a few things and had some bugs I can't remember any more. Later I stumbled across a derived version at

[jQuery] Re: how to access an element without an id via the eventobject in the callback function

2008-01-27 Thread Javier Infante
El dom, 27-01-2008 a las 08:29 -0800, marcus escribió: hi, I was playing around a it and was trying to simply catch every click- event with something like this $(document).click(function(event) { }); but what i just don't understand is how i can now access the element that was

[jQuery] Re: slideToggle weirdness - also Easing question

2008-01-27 Thread Rus Miller
Found my IE problem: this.css('display','inherit'); works when 'inherit' is changed to 'block'. On Jan 26, 11:23 pm, Rus Miller [EMAIL PROTECTED] wrote: Very nice!! That's exactly what I wanted to do, and so simple to implement...marginTop! There was only one remaining problem and that is

[jQuery] Re: facing problem to show cluetip on transparent image on Internet Explorer 7

2008-01-27 Thread Karl Swedberg
Hi, I'm having a hard time visualizing the problem that you're experiencing. Would you mind posting a public page somewhere that I can see? I'd be happy to investigate and offer a solution if I can come up with one. Thanks, --Karl _ Karl Swedberg www.englishrules.com

[jQuery] Re: slideToggle weirdness - also Easing question

2008-01-27 Thread Karl Swedberg
Hey Rus, I'm glad this is working for you and you were able to bend it to your will! I thought a bit about the 2 things you wanted to do differently and came up with a slightly different approach. To initially hide it, I think it makes more sense to set the marginTop property, since

[jQuery] Re: jqStripe - download and demo

2008-01-27 Thread Karl Swedberg
Very nice and simple, Brice! I like. One minor thing: You could probably chain these two lines ... $(this).removeClass(classes); $(this).addClass(params.stripeClasses[i % stripes]); so that you're not duplicating the effort of creating a jQuery

[jQuery] Re: how to access an element without an id via the eventobject in the callback function

2008-01-27 Thread Karl Swedberg
Hi Marcus, I think you'll find some useful information here: http://docs.jquery.com/Events/bind#typedatafn You were on the right track. You can use the target property of the event object. $(document).click(function(event) { $(event.target).empty(); // in case

[jQuery] Re: Too many autocompleter plugins

2008-01-27 Thread Matt Kruse
On Jan 27, 9:12 am, Christoph Haas [EMAIL PROTECTED] wrote: Now I'm stuck with my hacked version of a hacked version of an autocomplete plugin that may have fixed a few things. Can anybody enlighten me which autocomplete plugin can decently be used? Thanks. Back when I was looking for one, I

[jQuery] Re: jqStripe - download and demo

2008-01-27 Thread Brice Burgess
Karl, Thank you for your input as always. I'm glad you like the plugin. One minor thing: You could probably chain these two lines ... $(this).removeClass(classes); $(this).addClass(params.stripeClasses[i % stripes]); You are absolutely

[jQuery] Re: Can't get new Shadowbox plug-in to work. :o(

2008-01-27 Thread Rick Faircloth
Thanks, Michael! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael J. I. Jackson Sent: Sunday, January 27, 2008 10:55 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Can't get new Shadowbox plug-in to work. :o(

[jQuery] Re: Too many autocompleter plugins

2008-01-27 Thread Cloudream
try Jörn Zaefferer 's http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ http://jquery.bassistance.de/autocomplete/ On Jan 27, 11:12 pm, Christoph Haas [EMAIL PROTECTED] wrote: Fellow earthicans... A year ago I needed an autocompleter and tried Dylan Verheul's plugin

[jQuery] Re: how to access an element without an id via the eventobject in the callback function

2008-01-27 Thread marcus
It did indeed. Thank you very much! hope it helps!

[jQuery] Re: jQuery pimped out Free Css Template project

2008-01-27 Thread Cloudream
maybe you want to help Paul with his jQuery UI project look at http://ui.jquery.com http://docs.jquery.com/UI and checkout /trunk/ui /trunk/fx from jquery svn to have a try. On Jan 28, 12:26 am, Ty (tzmedia) [EMAIL PROTECTED] wrote: Has anyone noticedwww.yooTheme? They have some interesting

[jQuery] Another IE Sliding bug, the weirdest (some elements disappear and others not on SlideDown)

2008-01-27 Thread Arkilus
While building my application with jQuery I found out this really weird internet explorer bug: Applying SlideDown to elements that are relative positioned or that have relative positioned parents, some elements just disappears. This behaviour may be checked at http://www.arkilus.blogspot.com and

[jQuery] Re: how to access an element without an id via the eventobject in the callback function

2008-01-27 Thread marcus
It did. Thank you very much! On 27 Jan., 17:55, Javier Infante [EMAIL PROTECTED] wrote: El dom, 27-01-2008 a las 08:29 -0800, marcus escribió: hi, I was playing around a it and was trying to simply catch every click- event with something like this $(document).click(function(event)

[jQuery] keep div element visible in viewport

2008-01-27 Thread robing
Hi All, Is it possible to keep an element visible in the viewport even when the page has been scrolled, so as you scroll the page the header (for example) either gets bumped down or becomes visible when the scrolling stops? I know this can be done in frames but I would rather use jquery. any

[jQuery] Re: jQuery pimped out Free Css Template project

2008-01-27 Thread Ty (tzmedia)
Thanks alot Cloudream, I'm realling lining up projects I'ld like to cover in a future website. It sounds like a great idea adding similar items. I was disappointed to learn that the yooTheme's, at least the latest offering there is no free download. IT's for members and it's a pay site. So I

[jQuery] Re: keep div element visible in viewport

2008-01-27 Thread Klaus Hartl
On Jan 27, 9:19 pm, robing [EMAIL PROTECTED] wrote: Hi All, Is it possible to keep an element visible in the viewport even when the page has been scrolled, so as you scroll the page the header (for example) either gets bumped down or becomes visible when the scrolling stops? I know this

[jQuery] Re: [validate] does not work with fields, which have a dot . char in their name

2008-01-27 Thread Jörn Zaefferer
Tales Augusto schrieb: The rules are associated with the attribute name and not the attribute id of the field. I think the plugin does not accept attribute name with dot . Right, the rules must match element names. This should work: rules: { account.name: ... } Jörn

[jQuery] Re: Shadowbox Media Viewer

2008-01-27 Thread Aaron Heimlich
On Jan 27, 2008 2:20 AM, Michael J. I. Jackson [EMAIL PROTECTED] wrote: What file types are you wanting to play? I'll have to double check, but the only thing I can think of right now that Shadowbox doesn't support is PDF files. The application is really suited best for viewable content,

[jQuery] Re: how to build a image cycle?

2008-01-27 Thread DoZ
...I meant no rewind. On 24 Gen, 22:38, DoZ [EMAIL PROTECTED] wrote: Thank you!! Another question - and I've tried to do, but I didn't success - is on building a real cycle (last first, with no forward); I really don't understand the code for doing it! On 24 Gen, 13:35, Brad Hile [EMAIL

[jQuery] Help me with my corners?

2008-01-27 Thread Matt
Hi all... I am trying to get corners working on some elements on this page: http://www.gondwana.wb.gs/index.html?Action=Commerce2.ProductID=1 Can anyone have a look and maybe try to figure out what I'm doing wrong? It looks odd in both Firefox and IE, although neither of them report any

[jQuery] Re: Too many autocompleter plugins

2008-01-27 Thread Eric Martin
On Jan 27, 9:35 am, Cloudream [EMAIL PROTECTED] wrote: try Jörn Zaefferer 'shttp://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/http://jquery.bassistance.de/autocomplete/ This is the one I ended up using and would recommend it also. I only had to make a couple minor changes for

[jQuery] Re: keep div element visible in viewport

2008-01-27 Thread robing
Thanks Klaus, I just forgot about the css support of ie 7, i guess im going back to my 1990's memories of the spyware adverts on the screen. thank you very much. Robin On Jan 28, 10:14 am, Klaus Hartl [EMAIL PROTECTED] wrote: On Jan 27, 9:19 pm, robing [EMAIL PROTECTED] wrote: Hi All,

[jQuery] Re: JQuery object from another frame?

2008-01-27 Thread Nathan
So that code (below), does that override the child frame, or just 'appends' to the contents of the object, so ... if parent has object '#parentobject' and child has object '#childobject' will both objects be in the new object? Another thing would this code be able to map child frames object into

[jQuery] Re: howto properly rebind hover

2008-01-27 Thread Joel Birch
Also, a cool thing you can do now is group events within one unbind (and bind too): .unbind('mouseenter','mouseleave') Joel Birch

[jQuery] Re: keeping header at the top of page

2008-01-27 Thread robing
thank you guys!! i was just presuming that javascript was the most reliable cross browser way of doing this. thank you form you advice. regards Robin On Jan 26, 8:00 am, Christoph Haas [EMAIL PROTECTED] wrote: On Thu, Jan 24, 2008 at 08:30:59PM -0800, robing wrote: i have been asked to

[jQuery] Re: jqStripe - download and demo

2008-01-27 Thread Rey Bango
Rookie! ;) Great work Brice. Rey Brice Burgess wrote: Apologies for the localhost link! Here goes; http://dev.iceburg.net/jquery/jqStripe/

[jQuery] [SITE SUBMISSION] Businessweek using jQuery

2008-01-27 Thread Rey Bango
Found this today: http://www.businessweek.com/ Business Week is using jQuery. Rey

[jQuery] IE PNG flicker and doubled content

2008-01-27 Thread Jeremy Wilkins
Hello, I've been working on a jQuery-based portfolio and learning as I go. The Learning jQuery book has been indispensable. I've run up against a troubling issue with the IE PNG filter, as well as flickering duplicate content in IE. The page I'm working on is here:

[jQuery] Superfish problem with IE7

2008-01-27 Thread eugene33
Hi, I have a little problem with superfish and IE7 (probably IE6 too couldn't test it) works perfectly with FF/Konqueror... the link : http://september.bizpax.us Here is the css I used : /* There is a version of this file commented in great detail for educational purposes here: *