[jQuery] Re: jCarouselLite version 0.4.0

2007-07-26 Thread GianCarlo Mingati
that kicks ass. the mouse wheel implementation is a great idea! ;-) GC On Jul 26, 12:28 am, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Hi list, I have updated the jCarouselLite plugin to its next revision - 0.4.0 . The project page is athttp://www.gmarwaha.com/jquery/jcarousellite/index.php

[jQuery] trigger function when something has changed

2007-07-26 Thread Olivier Percebois-Garve
Hi I've a big legacy app on which there is jquery now. There is a 2 columns design, and when the page loads their height is being equalized. My issue is that their is lot of javascript, old and jquery style, often with inline calls, which will add or expand content and hence change the height

[jQuery] Re: ANNOUNCEMENT: jQuery resetDefaultValue plugin

2007-07-26 Thread Klaus Hartl
Leandro Vieira Pinho wrote: Hu, I don´t think it´s a good suggestion. Imagine: I use the filter to avoid submit/reset/button buttons, for example, so if I did it: $('input').resetDefaultValue().height(30); All the input elements affected by plugin will have 30 pixels of height. If I use

[jQuery] Re: $strip has no properties (??)

2007-07-26 Thread Ganeshji Marwaha
This is because, $.get() is asynchronous and your call to scrollmarquee is done before $.get() finishes in the background. One solution would be to place setInterval(scrollmarquee, 20); method within the callback of $.get() like this... $.get(url, function() { // your other stuff of inserting

[jQuery] Re: $strip has no properties (??)

2007-07-26 Thread GianCarlo Mingati
Hi thanks for your suggestion is not working... inserting setInterval(scrollmarquee, 20) into $.get() isnot called at all. GC On Jul 26, 9:48 am, Ganeshji Marwaha [EMAIL PROTECTED] wrote: This is because, $.get() is asynchronous and your call to scrollmarquee is done before $.get() finishes in

[jQuery] Re: Does jQuery have function for ajax periodical updater

2007-07-26 Thread Gordon
My first thought would be to use setInterval() to fire an ajax request at a regular interval, but as I don't know if the $.ajax object gets recycled or if a new XHR is created for each call. In the latter case the setInterval approach would cause the browser to eventually gobble up the system

[jQuery] Re: $strip has no properties (??)

2007-07-26 Thread GianCarlo Mingati
It works Thank you Cheers GC

[jQuery] Re: jQuery AJAX working in Firefox but not IE

2007-07-26 Thread Josh A.
Thank you, that gives me some ideas to try. To answer your question: because I am a javascript beginner just starting to get my head around this stuff :-) On Jul 25, 7:16 pm, Benjamin Sterling [EMAIL PROTECTED] wrote: Josh, First, I am curious why you are putting the code directly on a like,

[jQuery] Re: Interface: Slider, fractions, onSlide reporting incorrect fractions?

2007-07-26 Thread Scott Buckland
Thanks Mitch I found your function helpful. I was having trouble with the slide as the percent value or the xProc in your equation was inaccurate and changed if I click the slider a second time. I did however fine tune your equation for my own purposes. Here's my result: var fraction = x /

[jQuery] Manage overflow auto or something similar

2007-07-26 Thread Giovanni Battista Lenoci
Hi, I've a div with a list inside, each element contains a a tag and a p tag with a class that is hidden for default. I post some code for better explain: div id=news_eventi ul li a href=# onclick=$('.surprise').hide('slow');$('#news_3').show('slow');return false; + 19-06-2007

[jQuery] Re: Announce: Masked Input Plugin 1.0

2007-07-26 Thread Michael Schwarz [MVP]
Ji Josh, great work!! What I'm missing is a more detailed mask i.e. for date inputs: time input [0..23]:[0..59] date input [1..31].[1..12].[1900..2007] (and check for 29th Feb) Do you want to add this in your roadmap? Michael On Jul 26, 2:21 am, Josh Bush [EMAIL PROTECTED] wrote: I just

[jQuery] Re: Noob Question - .add() not working in IE?

2007-07-26 Thread webrocker
Hi John, thanks for the info, I'll try that. But it seems that there is another problem, because the part where the .attr(style) thing is checked, depends on the link beiing generated, wich does not happen in IE. The result of the code in IE is h3img / Text/h3 (which is the static html code) in

[jQuery] Re: Does $('input#myId') search for inputs first or is it optimised?

2007-07-26 Thread Rob Desbois
It uses document.getElementById(myId) as usual so it's a fast search, but it will then check that the returned element is an input, so there is a little additional overhead. --rob On 7/26/07, Remy Sharp [EMAIL PROTECTED] wrote: I should really know this, but I've come to realise I'm not 100%

[jQuery] Re: Does $('input#myId') search for inputs first or is it optimised?

2007-07-26 Thread Remy Sharp
Cheers for that. On Jul 26, 11:24 am, Rob Desbois [EMAIL PROTECTED] wrote: It uses document.getElementById(myId) as usual so it's a fast search, but it will then check that the returned element is an input, so there is a little additional overhead. --rob On 7/26/07, Remy Sharp [EMAIL

[jQuery] Re: Superfish with interface plugin ...

2007-07-26 Thread TiGeRWooD
Hi Joel, Thanks for reply. http://www.amside.be/index.php I did this test page with your sample code, the interface plugin is not used, just loaded ... Only superfish css is loaded and used ... And as you can see, the sub sub menu doesn't appear with IE7 ... Still better, if i put this code

[jQuery] Re: Selector Optimisation Question

2007-07-26 Thread Alex
There is a plugin that dies speed up the selection of DOM elements a lot: http://jquery.com/plugins/project/fastid This plugin speeds up use of $('#id'). Use of $('#id') may be anywhere between 10 and 40 times slower than using $ (document.getElementById('id')), depending on the browser used. I

[jQuery] Re: Ajax: (Didn't have time to go over posted messages)

2007-07-26 Thread Stephan Beal
On Jul 25, 8:15 pm, andreas [EMAIL PROTECTED] wrote: Didn't have time to go over the posts in the group and i would appreciate answers/tips cause i need to deploy an app. based heavily on async calls and custom headers will be required in many occasions. In the future i would recommend lying

[jQuery] Re: ANNOUNCEMENT: jQuery resetDefaultValue plugin

2007-07-26 Thread Leandro Vieira Pinho
Yeah, I´m wrong. And without the filter inside the plugin, we can use with textarea too. So, the new code is here. Thanks. I´m learning so much with these discussion. /** * jQuery resetDefaultValue plugin * @version 0.9.1 * @author Leandro Vieira Pinho [EMAIL PROTECTED] * How to use *

[jQuery] Re: Java Errors when using .Accordion and .innerfade - Please help :)

2007-07-26 Thread Aaron
Thanks for the advice! i have tried reversing the order but no luck. the error happens when there is no accordian items on the page. The javascript call is in the template and on every page. Other wise i would have to make a seperate template or modify each page that only has the acordion on it.

[jQuery] Re: Get a range of elements (getting late, and losing my mind)

2007-07-26 Thread Ganeshji Marwaha
This is great... I am glad it worked, and more importantly thank you for sharing the modified version as well. -GTG On 7/26/07, agent2026 [EMAIL PROTECTED] wrote: Added first/last jumps. Tried to figure out a way to have the same amount of page numbers displayed at all times, but that was

[jQuery] Field Plug-in Update - TabIndex Navigation...

2007-07-26 Thread Dan G. Switzer, II
Everyone, I've updated my Field Plug-in with some new methods to make it easy to go to specific fields within the tabIndex of the form. I'm looking for people to test the new functionality before updating my Plug-in in the repository. http://www.pengoworks.com/workshop/jquery/field.plugin.htm

[jQuery] Re: Opacity in fadeTo, etc does not work in IE, am I crazy?

2007-07-26 Thread [EMAIL PROTECTED]
Hmm, I'm not sure since I removed the header from the js file. I downloaded jQuery shortly after it got dugg for 1.1.3.1. I will download it again just in case there was a patch I missed. On Jul 25, 5:00 pm, Brandon Aaron [EMAIL PROTECTED] wrote: Are you using jQuery 1.1.3.1? -- Brandon

[jQuery] Re: vs '

2007-07-26 Thread Klaus Hartl
Stephan Beal wrote: On Jul 26, 6:37 pm, Mitchell Waite [EMAIL PROTECTED] wrote: This going will make me sound really dumb but what is the difference between using single quote versus double quotes in jQuery, e.g. Mitchel, PLEASE don't hijack other people's threads to post a question. Start a

[jQuery] Re: A perhaps SOT CSS/jQuery question

2007-07-26 Thread Christopher Jordan
Yeah, it kinda sucks, but I've got some work to do for another client that ought to last me maybe a week or so. But that other client was my bread 'n butter. :o( Anyway, thanks again! Chris On 7/26/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Ah.. been there before. On 7/26/07, Christopher

[jQuery] Data, get response.

2007-07-26 Thread [EMAIL PROTECTED]
Is there a way to pull a div out of a get response? ive tried all sorts of uses behind the find, even the (expr,contenxt) method and im just getting stuck at every corner. This is what im currently doing but I have to append to the dom HTML data all the time, after one click event, my hide and

[jQuery] Re: Data, get response.

2007-07-26 Thread George
I may not be clear about what you're trying to do here but... Is the the data valid xhtml when it is returned? So this $(data).find(DIV) did not work? What about $(SPAN/SPAN).append(data).find(DIV) ? George On Jul 26, 8:17 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there a way to pull

[jQuery] Re: SITE SUBMISSION: Please add gsalr.com to the list of sites

2007-07-26 Thread Michael E. Carluen
Nicely done Marshall. How are you able to mashup the Craigslist data? I have been looking into that. Any advise? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Marshall Salinger Sent: Thursday, July 26, 2007 1:09 PM To: jquery-en@googlegroups.com

[jQuery] ANNOUNCE: jQuery moreSelectors plugin adds :color() :colIndex() :hover and more

2007-07-26 Thread George
The jQuery moreSelectors plugin has been updated for jQuery v1.1.3.1. For example: DIV:color(red) to match DIVs with red text. Automagically matches #rrggbb and rgb(r,g,b) formats too. TD:colIndex(1) to match table cells in column 1 (allowing for colSpans too). SELECT:modified to match SELECTs

[jQuery] Re: Form Client and server side validaion probleme

2007-07-26 Thread Samad
Bump! No one can help me ?? On 25 juil, 22:46, Samad [EMAIL PROTECTED] wrote: Hello, I'm trying to fix a validation form probleme but I don't have any idea. This is the probleme : I have a forum with inputs, for the validation, I have some client side controls and server ones with an

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Mitchell Waite
I do have it and I have run it but I don't see where it can tell me what I am doing wrong. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Priest, James (NIH/NIEHS) [C] Sent: Thursday, July 26, 2007 10:49 AM To: jquery-en@googlegroups.com

[jQuery] Re: Data, get response.

2007-07-26 Thread [EMAIL PROTECTED]
$(data).find(DIV) Did not work for me I did uhmm $(data).find('#bodyframe'); I didn try the span function, im not sure what you mean by it, could you explain more what it would do? On Jul 26, 2:31 pm, George [EMAIL PROTECTED] wrote: I may not be clear about what you're trying to do here but...

[jQuery] 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread mmiller
I if download and host the jqModal public example (and associated resources) on a local webserver and simply change the jQuery to 1.1.3.1, jqModal stops working in IE6. The overlay is pushed to a thin box at the bottom of the page and any modal like behavior is lost. My workaround is to roll

[jQuery] Re: ANNOUNCE: jTagEditor 1.0 beta

2007-07-26 Thread Ganeshji Marwaha
This plugin rocks... I always wanted a simple tag editor like this, but, i also wanted a preview mode... I understand that this is in beta... So, is there any plans for preview mode going forward... -GTG On 7/26/07, Karl Swedberg [EMAIL PROTECTED] wrote: I love it! This was on my to-do list

[jQuery] Re: ANNOUNCE: jTagEditor 1.0 beta

2007-07-26 Thread Sean Catchpole
Looks great Jay! Keep up the hard work. ~Sean

[jQuery] Re: jqModal help: multiple triggers, different ajax url's

2007-07-26 Thread Benjamin Sterling
David, You can do something like: a href=this.htm class=typeAthis/a $('a.typeA').click(function(){ $('#modal').jqm({ajax: this.href, trigger: '.typeA', modal: 'true', target:'target'}).jqmShow(); return false; }); On 7/26/07, David Mernin [EMAIL PROTECTED] wrote: I am stuck with the same

[jQuery] Re: [Off-Topic] CSS Combine Images

2007-07-26 Thread Alexander Graef
://dev.portalzine.de http://dev.portalzine.de pro.portalZINE(R) - customized experience http://pro.portalzine.de __ NOD32 2424 (20070726) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com

[jQuery] [Off-Topic] CSS Combine Images

2007-07-26 Thread Alexander Graef
Normally for each image on a webpage a separate request to the webserver is required, each taking as much as a hundred millisecond. Does not sound much, but can add up fast. There is an easy way to overcome this by combining images into one single image and address the single images using

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Josh Nathanson
Mitchell, I don't know of any Firebug tutorials offhand, I would just Google it and see what turns up. -- Josh - Original Message - From: Mitchell Waite [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Thursday, July 26, 2007 2:11 PM Subject: [jQuery] Re: Are there any

[jQuery] Re: jCarouselLite version 0.4.0

2007-07-26 Thread Ganeshji Marwaha
Thanks GianCarlo for the compliment. -GTG On 7/26/07, GianCarlo Mingati [EMAIL PROTECTED] wrote: that kicks ass. the mouse wheel implementation is a great idea! ;-) GC On Jul 26, 12:28 am, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Hi list, I have updated the jCarouselLite plugin to its

[jQuery] Re: [Off-Topic] CSS Combine Images

2007-07-26 Thread Mitchell Waite
I think this is a cool idea, but what is needed is an example so we can see how valuable it is. A nice example would show the slow way vs your sliced way and see how they compare. From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Graef Sent: Thursday, July 26,

[jQuery] Re: IE and the Invalid Source Code Error

2007-07-26 Thread Benjamin Sterling
I don't anything in your code that may cause issue. I would suggest that you take out some of the effects and then test it with just the .html()s and see if the issue persists. But now that I think about it, you should probably change them to .text() since you are only putting text in. You

[jQuery] Re: datePicker plugin inline

2007-07-26 Thread Larry Garfield
Thanks Rob. It looks promising. I'll give it a shot tomorrow at work. I'm not set on it being jQuery, just on it being not as buggy as the YUI thing is. :-/ On Thursday 26 July 2007, Rob Desbois wrote: Larry, Try the dynarch calendar at http://www.dynarch.com/projects/calendar/ It's not

[jQuery] Re: datePicker plugin inline

2007-07-26 Thread Larry Garfield
I looked at that yesterday. Unfortunately it's CC licensed non-commercial, and this is for a commercial project. (Custom app for a client.) On Thursday 26 July 2007, bbuchs wrote: Give this a shot: http://tedserbinski.com/jcalendar/index.html Inline calendar that ties to 3 select

[jQuery] Re: [Off-Topic] CSS Combine Images

2007-07-26 Thread Olivier Percebois-Garve
This is a well-know technique. If I remember right, credits goes to http://wellstyled.com/css-nopreload-rollovers.html -Olivier Mitchell Waite wrote: I think this is a cool idea, but what is needed is an example so we can see how valuable it is. A nice example would show the slow way vs

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread mmiller
Thanks David, Sourcing from: http://dev.iceburg.net/jquery/jqModal/ I am using jqModal $Version: 2007.02.25 +r9. IE6 works for me with jQuery1.1.2 but not jQuery1.1.3.1. I've tested the following in IE6.0.2900.2180.xpsp_sp2: jQuery 1.1.2 + r9 = PASS jQuery 1.1.2 + r10beta = PASS jQuery 1.1.3 +

[jQuery] Re: SITE SUBMISSION: Please add gsalr.com to the list of sites

2007-07-26 Thread Marshall Salinger
Thanks Rey! Rey Bango wrote: Hi Marshall, Great work! I'll be adding it today. Rey Marshall Salinger wrote: Hello Rey, I was wondering if you could add gsalr.com http://gsalr.com to the list of sites that use jQuery. The site is a mashup of Google Maps / Craigslist and a few other

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Jeferson Koslowski
There is a video presentation in Yahoo, where Joe Hewitt (Firebug author) talks about Firebug 1.0 and some features. Here: http://video.yahoo.com/video/play?vid=111597 On 7/26/07, Josh Nathanson [EMAIL PROTECTED] wrote: Mitchell, I don't know of any Firebug tutorials offhand, I would just

[jQuery] Re: [ANNOUNCE] jCarouselLite version 0.4.0

2007-07-26 Thread Nicolas Hoizey
Think both Nicolas and Mike are looking for the same feature... I will see if that can be implemented without affecting the size of the plugin too much. You know, coz it is named Lite and all... I'm not sure it would be big. You just need to clone the first and put it in the end, and

[jQuery] Boggles the mind - mousevoer and mouseout together

2007-07-26 Thread Mitchell Waite
Imagine this When a user moves the mouse over a certain div (mouseover) on your page you want to do some things 1. fadeOut a graphic in that div to 50% 2. Make a button in that div appear (show) 3. Manipulate the button's 3 states (my wonderful 3 state button gizmo) 4. When the

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread David Duymelinck
Are you using the last revision of the plugin? I use jqModal for an IE6 intranet site and i had no bumps upgrading to jQuery 1.1.3 --David On Jul 26, 10:01 pm, mmiller [EMAIL PROTECTED] wrote: I if download and host the jqModal public example (and associated resources) on a local webserver

[jQuery] Re: Ken Burns effects using jQuery?

2007-07-26 Thread Rey Bango
How about this one: http://medienfreunde.com/lab/innerfade/ Nicolas Hoizey wrote: Hello, Has anyone already made a Ken Burns effects slideshow powered by jQuery? I've found this one very nice, but made with Mootools, and I would not like having all JS libraries on my website... ;-)

[jQuery] Ken Burns effects using jQuery?

2007-07-26 Thread Nicolas Hoizey
Hello, Has anyone already made a Ken Burns effects slideshow powered by jQuery? I've found this one very nice, but made with Mootools, and I would not like having all JS libraries on my website... ;-) http://www.electricprism.com/aeron/slideshow/ I don't need much, only a slideshow of photos

[jQuery] Re: Java Errors when using .Accordion and .innerfade - Please help :)

2007-07-26 Thread Aaron
ok si i tried different ways of the above code with the if( $j('#SpeakerDIV').length ) but i can not seem to figure out how to get it to work. On Jul 26, 2:05 pm, Aaron [EMAIL PROTECTED] wrote: Great! Thanks so much for the help! so is this correct for the call then? var $j =

[jQuery] Re: SITE SUBMISSION: Please add gsalr.com to the list of sites

2007-07-26 Thread Michael E. Carluen
To phrase to question better, how were you able to parse the addresses if you're getting the data from craigslist directly? Or which web service are you using if you're using one? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael E. Carluen Sent:

[jQuery] Re: Form Client and server side validaion probleme

2007-07-26 Thread Dan G. Switzer, II
Samad, AJAX calls are asynchronous and will run outside the context of the current function. So, while the AJAX call might get invoked, the function will continue to run in parallel with the AJAX call. The only way to get the script to run like you have it would be to specific run the AJAX

[jQuery] Re: jqModal help: multiple triggers, different ajax url's

2007-07-26 Thread David Mernin
I am stuck with the same problem... Hope someone can help! =) On Jul 11, 3:26 pm, rolfsf [EMAIL PROTECTED] wrote: I have a page on which I've hidden a div for use as an adaptable modal window: div id=modal class=jqmWindow div class=modalTop div class=jqmClose

[jQuery] Re: SITE SUBMISSION: Please add gsalr.com to the list of sites

2007-07-26 Thread Rey Bango
Hi Marshall, Great work! I'll be adding it today. Rey Marshall Salinger wrote: Hello Rey, I was wondering if you could add gsalr.com http://gsalr.com to the list of sites that use jQuery. The site is a mashup of Google Maps / Craigslist and a few other sites that list garage sales on the

[jQuery] SITE SUBMISSION: Please add gsalr.com to the list of sites

2007-07-26 Thread Marshall Salinger
Hello Rey, I was wondering if you could add gsalr.com to the list of sites that use jQuery. The site is a mashup of Google Maps / Craigslist and a few other sites that list garage sales on the web. The site provides a map view of garage sales in various cities across the United States. The

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread Josh Nathanson
Mark, I noticed the same thing and also had to roll back to 1.1.2. I sent the plugin author an email offlist, I see you have cc'd him as well. Hopefully he will come up with an update soon that will address the issue. -- Josh - Original Message - From: mmiller [EMAIL PROTECTED]

[jQuery] Re: $(e.target) $('#id'), IE got problem

2007-07-26 Thread George
Try copying e.target into a variable at the start of the click event, then refer to the variable instead in the get() method. (Seeing as both occurrences of e.target are wrapped in $() you may as well store that in the variable) Something like: function paginator_hook(){ $('div.paginator

[jQuery] Re: BlockUI does not display overlay in IE6 and IE7

2007-07-26 Thread seedy
I just had the same problem with transparency, upgrading to jQuery 1.1.3.1 seemed to clear it up. Trymbill wrote: Hi guys! I have a problem regarding BlockUI. I'm using it on a website where I have a few users registered. The idea is that a user can browse for an image, select it and

[jQuery] Re: Java Errors when using .Accordion and .innerfade - Please help :)

2007-07-26 Thread Aaron
Great! Thanks so much for the help! so is this correct for the call then? var $j = jQuery.noConflict(); $j(document).ready(function() { //Function for the Inner Fade News Ticker $j('.NewsLC').innerfade({ animationtype: 'fade', speed: 700,

[jQuery] Re: A perhaps SOT CSS/jQuery question

2007-07-26 Thread Christopher Jordan
Thanks Benjamin. I'll see if that helps. Unfortunately, that client just up and decided out of the blue to stop work on all projects for about a months time, so who knows when (if) I'll get back to it. :o( Chris On 7/26/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Chris, with out actually

[jQuery] Re: IE and the Invalid Source Code Error

2007-07-26 Thread Benjamin Sterling
Mike, Great story, it brought a tear to my eye :) Do you have a demo page for us to look at? Some code? Sounds like a innerHTML/non-block level element issue, but not sure off hand. On 7/26/07, mcraig [EMAIL PROTECTED] wrote: Ok...so I just got this mock up working great in firefox and

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Josh Nathanson
Mitchell, a good way to debug jQuery or JS in general is via a tool called Firebug, that is available as an extension for the Firefox browser. In your case, it probably would have said something like fade is not a method of jQuery, which would have immediately helped you diagnose the problem.

[jQuery] Rss Feed pagination animation

2007-07-26 Thread Ty
Tossing this one out as I've not idea if there is a way to animate the loading of an RSS feed (remote content). Had the idea to say maybe pull in gallery screenshots from CSSmania for example maybe 3 at a time and have them slide out and three more slide in. It might require the magpieRSS app,

[jQuery] Re: vs '

2007-07-26 Thread Rob Desbois
Sean, Attributes in (X)HTML don't need to be double-quoted, again single-quotes are equally valid there so 'a href=...' and a href='...' are effectively the same and both valid. I know you probably know, I just wanted to rephrase It is easier to type an html string if you use single quotes: in

[jQuery] A perhaps SOT CSS/jQuery question

2007-07-26 Thread Christopher Jordan
Hi folks, I'm having trouble with a bit of jQuery/CSS stuff, and I'm hoping someone here could explain what the heck I'm doing wrong. I am not by any stretch a CSS guy. I do what I can to get by. Also (and I know this sticks in lots of people's craw), this only *has to* work in IE. This is an

[jQuery] Re: Java Errors when using .Accordion and .innerfade - Please help :)

2007-07-26 Thread Stephan Beal
On Jul 26, 4:48 pm, Aaron [EMAIL PROTECTED] wrote: Is there a way to have it work if there is an element but if no element on the page dont throw an error? a) hack the plugin source code or b) add a hidden accordion-compatible element to pages which don't normally have one (that would be an

[jQuery] Re: [ANNOUNCE] jCarouselLite version 0.4.0

2007-07-26 Thread Nicolas Hoizey
I have updated the jCarouselLite plugin to its next revision - 0.4.0. The project page is at http://www.gmarwaha.com/jquery/ jcarousellite/index.php This is really great! One more option I really would love would be to have infinite carousel, with left most element being repeted on the

[jQuery] Re: datePicker plugin inline

2007-07-26 Thread Kelvin Luck
Hi, I'm afraid I haven't got any alternative suggestions... If you only need one calendar on the page and don't need a popup one as well you could implement a temporary dodgy hack... You could look for the calls to close the calendar and just comment them out... It's not pretty but could

[jQuery] IE and the Invalid Source Code Error

2007-07-26 Thread mcraig
Ok...so I just got this mock up working great in firefox and realized that after all that work (new to JQuery), I had never tested it in IE. But, figuring it was cross browser and I was going to test on the latest IE that this would not prove problematic. And of course, nothing I was doing was

[jQuery] Re: Announce: Masked Input Plugin 1.0

2007-07-26 Thread Christopher Jordan
I was about to do something like this for SSNs but you beat me to the punch. Great work Josh! You just saved me loads of time! :o) Cheers! Chris On 7/26/07, Josh Bush [EMAIL PROTECTED] wrote: Sorry for the confusing eye script example. Someone on this list had a request and gave me that as

[jQuery] Re: Announce: Masked Input Plugin 1.0

2007-07-26 Thread Josh Bush
Sorry for the confusing eye script example. Someone on this list had a request and gave me that as an example. That's what I tested with and that's what I threw up on the site. If you have a more clear example, I'd be happy to place it up on the website for the benefit of everyone. For my

[jQuery] Re: Announce: Masked Input Plugin 1.0

2007-07-26 Thread Bernd Matzner
Terrific, Josh! Thanks for your work on this baby. Took some time to figure out how the Eye script custom +/- placeholder is supposed to work, but I guess it's just a matter of adding a tooltip hint on valid input (fortunately, I don't need glasses, so I guess that's why I'm not familiar with

[jQuery] Re: ANNOUNCE: jTagEditor 1.0 beta

2007-07-26 Thread Jay Salvat
My apologies ! too much emotion... ;) Here is the url: http://www.jaysalvat.com/jquery/jtageditor/ Thanks ! Bruce Wang a écrit : On 7/26/07, Jay Salvat [EMAIL PROTECTED] wrote: Hi all, I'm pleased to announce the birth of jTagEditor 1.0 beta. It's a small and customizable tag

[jQuery] reproduce position:fixed

2007-07-26 Thread Alexandre Plennevaux
hello! i'm trying to have a div box stay permanently on the same position in the viewport, no matter how much the page is scrolled. I try to use dimensions.js to do it, but so far i've failed to calculate correctly the new top position of my element. Can someone explain me what i'm doing

[jQuery] Re: Announce: Masked Input Plugin 1.0

2007-07-26 Thread Josh Bush
This is something I'd like to do along with making pieces of the mask optional. I'll keep it simple as I don't want to overlap the work done on the validation plugin. On Jul 26, 3:06 am, Michael Schwarz [MVP] [EMAIL PROTECTED] wrote: Ji Josh, great work!! What I'm missing is a more detailed

[jQuery] $strip has no properties (??)

2007-07-26 Thread GianCarlo Mingati
Hi list. If yoy have FF with Firebug, and go to this page http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/beta/continuous.html you MAY have an error that pops up that says that $strip has no properties $strip in this script should be (should be because i'm 'learning' jquery)

[jQuery] Re: [ANNOUNCE] jCarouselLite version 0.4.0

2007-07-26 Thread Ganeshji Marwaha
Rey, I sure will do it, but since all the demos are in php files right now, i might need some time to make a zip of all the demos and docs. I will give it a shot over the weekend and let you know... is that fine with u... BTW, if i have to make jCarouselLite available via jquery svn whom

[jQuery] Re: Boggles the mind - mousevoer and mouseout together

2007-07-26 Thread Mitchell Waite
Thank you Josh, that triggered something - that I am not asking very good questions, and that I had just finished reading about bubbling in Karl's L J Q chap 3. I understand that is when an event like a click travels up the DOM to other elements and you want it to stop. Karl presents

[jQuery] Re: SITE SUBMISSION: Please add gsalr.com to the list of sites

2007-07-26 Thread Josh Nathanson
My critique is: that is badass. -- Josh - Original Message - From: Marshall Salinger To: jquery-en@googlegroups.com Sent: Thursday, July 26, 2007 4:20 PM Subject: [jQuery] Re: SITE SUBMISSION: Please add gsalr.com to the list of sites Hi Michael, I wish I could offer

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread cfdvlpr
Firebug is awesome for debugging your Jquery code using firefox. But, how do you debug problems that occur in IE and IE only?

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Josh Nathanson
Mitchell - if an error occurs in a script, you will see a red x in the lower right corner of the web browser. Click that to open the Firebug console. In the console tab you'll see the error. Instead of throwing an alert like IE6 does, it logs errors into the console. If your script is

[jQuery] show jeditable textarea onload instead of onclick

2007-07-26 Thread cfdvlpr
I have a jeditable textarea that works perfectly. However, I want do make one small modification. I want the editable textarea to show as a input type text when the page loads rather than when the user clicks on the div. I've tried event: load and event: onload, but neither of those works.

[jQuery] Re: BlockUI not displaying overlay background in IE6 and IE7

2007-07-26 Thread Mike Alsup
Magnus, Based on your description is sounds like there is a script error on your page (IE is not stupid in regard to return false). That would explain why the form doesn't not submit correctly and why blockUI does not display. Do you have IE's script debugger enabled? Is there a link you can

[jQuery] BlockUI not displaying overlay background in IE6 and IE7

2007-07-26 Thread Maggi
Hi guys! I have a problem regarding BlockUI. I'm using it on a website where I have a few users registered. The idea is that a user can browse for an image, select it and as soon as it has been selected the BlockUI will appear and ask them to wait. Then it runs through a PHP code via Ajax and

[jQuery] Re: A perhaps SOT CSS/jQuery question

2007-07-26 Thread Benjamin Sterling
Ah.. been there before. On 7/26/07, Christopher Jordan [EMAIL PROTECTED] wrote: Thanks Benjamin. I'll see if that helps. Unfortunately, that client just up and decided out of the blue to stop work on all projects for about a months time, so who knows when (if) I'll get back to it. :o( Chris

[jQuery] Re: A perhaps SOT CSS/jQuery question

2007-07-26 Thread Christopher Jordan
Benjamin, I know. I thought the preferred method for event handling was to use the bind method. Isn't .hover() just a short cut for what I've done? Always happy to learn something new. :o) Thanks, Chris On 7/26/07, Benjamin Sterling [EMAIL PROTECTED] wrote: Also, this:

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Priest, James (NIH/NIEHS) [C]
-Original Message- From: Mitchell Waite [mailto:[EMAIL PROTECTED] $(#nest).click(function() { alert(got it); $(#nest).fade(slow); I still haven't picked up my jQuery book again - this weekend! But couldn't your write this

[jQuery] Re: vs '

2007-07-26 Thread Mitchell Waite
Thanks to Sean, Aaron and Rob, this is now very clear. I have used both and it was just bugging me. I sort of prefer double quotes, its just more like everything else I do. From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sean Catchpole Sent: Thursday, July 26, 2007 9:48

[jQuery] Are there any particular ways to debug jQuery code?

2007-07-26 Thread Mitchell Waite
Noobie question 99 Are there any particular ways to debug jQuery code? I have a small handler $(#nest).click(function() { alert(got it); $(#nest).fade(slow); });

[jQuery] Re: vs '

2007-07-26 Thread Sean Catchpole
On 7/26/07, Mitchell Waite [EMAIL PROTECTED] wrote: This going will make me sound really dumb but what is the difference between using single quote versus double quotes in jQuery, e.g. Mitchell, the concept of single vs double quotes is more of a javascript question. The simple answer is that

[jQuery] Re: Get a range of elements (getting late, and losing my mind)

2007-07-26 Thread agent2026
Thanks, that got me on the right track. Just to follow through, I ended up passing a spread variable (number of pages on either side of the current page) to pager.js, and calling this function at the end: function pageTrim(){ $(li:not(.prev):not(.next),pager).show();

[jQuery] Re: Testing required for latest jQuery Maps Plugin

2007-07-26 Thread Aaron
AWESOME! Do you have a demo we can take a look at? On Jul 26, 8:35 am, Mike Alsup [EMAIL PROTECTED] wrote: Awesome work, Tane! That's a lot of great functionality! Mike * Added support for creating Yahoo! Maps, can create Map, Satallite or Hybrid. Check out available options below

[jQuery] Joomla and jQuery

2007-07-26 Thread NeOman
Hi guys! I've successfully implemented jQuery library into my Joomla based site - I'm using it for the drop-down login on the top of my page, but I have a bit of a problem with the gallery section. I'm using Simple Image Gallery ( http://www.joomlaworks.gr/#downloads_section ) and everytime I

[jQuery] Re: reproduce position:fixed

2007-07-26 Thread Brandon Aaron
I would stick with position: fixed for the browsers that support it (all but IE6) and for IE6 I would probably use CSS expressions to make it work properly. CSS Expressions will be the fastest, in terms of rendering, for IE6. Here is a site that talks about using expressions to make fixed

[jQuery] Re: [ANN] Dimensions 1.0 final is finally here!

2007-07-26 Thread Brandon Aaron
Hey Alexandre ... are you trying to hi-jack my thread? :p I'll respond over on your thread: http://groups.google.com/group/jquery-en/browse_thread/thread/76320a7b9dd9a2c9/03363a190e9d34fa#03363a190e9d34fa -- Brandon Aaron On 7/26/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: ah! cool!

[jQuery] Re: Testing required for latest jQuery Maps Plugin

2007-07-26 Thread Mike Alsup
Awesome work, Tane! That's a lot of great functionality! Mike * Added support for creating Yahoo! Maps, can create Map, Satallite or Hybrid. Check out available options below * Added support for creating points on Yahoo! maps. * Added support for creating Polylines on Yahoo! maps. *

[jQuery] Re: [ANN] Dimensions 1.0 final is finally here!

2007-07-26 Thread Alexandre Plennevaux
ah! cool! Brandon, i'm fighting to get a div permanently sit on the screen! I could use position:fixed, but it messes my element position because i center its div container. could you explain how to have an element with position:relative stay on the same viewport position? Is it at all

  1   2   >