[jQuery] Re: Loading GIF Slideshow w/o Modal

2008-02-02 Thread Ange
This method solves the preloading problem with the Cycle plugin. http://www.circleatseven.com/portfolio.php $("div#gallerywrapper").one("mouseover", function() { $("div#gallery").append( '' + '

[jQuery] Re: accordion problem in IE

2008-02-02 Thread SteveM
I too am having the same problem with both IE6 and IE7. using. jQuery().ready(function(){ jQuery('#sideMenu').Accordion({ active: false, header: '.stitle', navigation: true, animated: 'easeslide'

[jQuery] Re: Brand-new user: Viwepoint

2008-02-02 Thread [EMAIL PROTECTED]
Thanks, I hadn't seen that! I've added it to my page (yes, I started one ... ) here: http://cherry.austin.googlepages.com/home Cherry :) On Feb 2, 7:25 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Also, take a look at the Learning jQuery blog. Posts can be filtered > by experience level: > >

[jQuery] Re: How to prevent user from clicking links or buttons while submitting

2008-02-02 Thread pedalpete
Hey klaus, I tried as you directed and placed it within the jquery form plugin, but it doesn't seem to be working, I am able to click the submit button multiple times. Any idea as to why this would not work with the plugin? [code] $('#addForm').submit(function() { // inside event callba

[jQuery] Re: contents().height() in FF

2008-02-02 Thread Sebioff
@Olaf: Thanks, I'm doing it exactly like that now :) @Ariel: Well, what I do (not in this example, though) is using your scrollTo- Plugin in combination with the Mousehold-Plugin. As long as the link is clicked, the content of the div should be scrolled down. The scrolling looks a bit strange wit

[jQuery] Drag n Drop

2008-02-02 Thread [EMAIL PROTECTED]
I have a draggable div, and a droppable div. How can i make something like this If drop outside droppable revert to initial position else update ?

[jQuery] Re: [validate] validating dynamically created fields

2008-02-02 Thread Steffan A. Cline
on 2/1/08 1:49 PM, Jörn Zaefferer at [EMAIL PROTECTED] wrote: > > Steffan A. Cline schrieb: >> on 2/1/08 1:10 PM, Jörn Zaefferer at [EMAIL PROTECTED] wrote: >> >> >>> Steffan A. Cline schrieb: >>> I have a form in multiple sections. The validation declarations are in the head

[jQuery] Re: Cycle CountUp

2008-02-02 Thread Rick Faircloth
Very good idea, Glen! Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Saturday, February 02, 2008 8:13 PM To: jquery-en@googlegroups.com Subject: [jQuery] Cycle CountUp Interesting tidbit: I as looking at the questions on Experts-Exchange f

[jQuery] Cycle CountUp

2008-02-02 Thread Glen Lipka
Interesting tidbit: I as looking at the questions on Experts-Exchange for JavaScript. http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/ *My discovery:* A big portion of the questions are easy to answer if you use jQuery. One of them turned into a neat demo I whipped up:

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

2008-02-02 Thread Gorkfu
The reason why I don't want anyone adding more than 250 fields is because if they were to go over that amount, 251 and so on would not get entered into the mysql db. I know some people will probablly be thinking, why would I have such a large table? Well I don't really want to go into that and tha

[jQuery] [Validation] v1.2.1pre - Validating an empty field and

2008-02-02 Thread Rus Miller
Jörn, Jeez, this groups board is the buggiest thing I've ever seen from Google. I can't answer my own post anymore (http://groups.google.com/ group/jquery-en/browse_thread/thread/74705e85e6d0b747#) so I've started this new one. So annoying, because all I want to say is... I moved up to your la

[jQuery] Re: Release: Tooltip plugin 1.2

2008-02-02 Thread Lee Hinde
On Feb 2, 2008 2:28 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Doesnt seem to be working on Safari. > > what specifically? It works for me with Safari 3.0.4

[jQuery] Re: How to bind to a dynamically created object

2008-02-02 Thread wyo
> maybe cutting that 'id=' ? > simply: > $('.expanding, #'+i+). Unfortunately not since I've done this before. IMO the only solution would be to use the onclick clause in HTML but I haven't figured out to access jQuery from outside. E.g. yet this doesn't work so far. O. Wyss

[jQuery] Re: Brand-new user: Viwepoint

2008-02-02 Thread Karl Swedberg
Also, take a look at the Learning jQuery blog. Posts can be filtered by experience level: http://www.learningjquery.com/ --Karl On Feb 2, 2008, at 12:12 PM, [EMAIL PROTECTED] wrote: Ahh ... will do! Thanks, Alexandre :) On Feb 2, 7:36 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrot

[jQuery] Re: How to bind to a dynamically created object

2008-02-02 Thread andrea varnier
On 2 Feb, 18:06, wyo <[EMAIL PROTECTED]> wrote: >$('.expanding, id=#'+i+). > Is this because of my code or livequery? any idea how to solve it? maybe cutting that 'id=' ? simply: $('.expanding, #'+i+).

[jQuery] Re: ajaxSubmit and Form Submit troubles

2008-02-02 Thread Mike Alsup
> I've tried a few event disabling things to try to kill the form plug in > when > you click submit, and I've even done a $.post to serialize the form and > post > it, and that works, but for this project I need to be able to fire off a > full form post using the submit button. > What version of

[jQuery] Re: Is using jQuery and jQuery (2, 3, 4, n versions of jQuery on the same context) possible?

2008-02-02 Thread Scott González
Thinking about this more, the best way to do this would probably be to create a single file that contains the version of jQuery you want to use, plus some extra code that calls jQuery.noConflict(true) and adds methods to manage the instance of jQuery that you care about. You could do something li

[jQuery] Re: Brand-new user: Viwepoint

2008-02-02 Thread [EMAIL PROTECTED]
Ahh ... will do! Thanks, Alexandre :) On Feb 2, 7:36 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > Hi Cherry, > > as you noted, jquery is an opensource project so user contributions > are desired, and the doc is a wiki. Feel free to register and > contribute, modify and add what you thi

[jQuery] Re: onClick prepend

2008-02-02 Thread Mark
Anyone have any ideas at all on this problem? Our deadline is approaching fast! I think that the click() function attached to the DOM element must be the DOM level 2 stuff. Any ideas? Maybe there is a different approach I can try? Man, I wish IE wasn't such a pain! On Feb 1, 8:08 am, Mark <[E

[jQuery] ajaxSubmit and Form Submit troubles

2008-02-02 Thread davidgoldingdesign
So I've set up a form that uses the form plugin to upload a file asynchronously: [... some fields, etc ...] I've been able to get all the PHP scripts working correctly. Here's what happens and what is confusing the heck out of me. First, when you click the submit button, it posts th

[jQuery] Re: Post to Preloaded AJAX Page?

2008-02-02 Thread andrea varnier
On 1 Feb, 21:33, Pete <[EMAIL PROTECTED]> wrote: > So can I post to default.asp#contactSection or > "#contactSection somepage.asp" or do I need additional parameters? you just need to do $("#contactSection").load('somepage.asp'); and that's all, somepage.asp will be loaded into the element with

[jQuery] Re: How to bind to a dynamically created object

2008-02-02 Thread wyo
On Feb 2, 5:06 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > http://brandonaaron.net/docs/livequery/ > This will do the trick. > Perfect. Yet if I rework the sample to bind each image separate, the script takes for ages and the browser complains about stopping the script. for (var i in data

[jQuery] Re: Is using jQuery and jQuery (2, 3, 4, n versions of jQuery on the same context) possible?

2008-02-02 Thread Scott González
I created a test page for this a while ago when someone else asked about this. I believe the context was that they were using a framework which had jQuery 1.0.4 bundled in and they wanted to use jQuery UI, which required jQuery 1.2. You can see the method I used at http://scottsplayground.com/t

[jQuery] Re: How to bind to a dynamically created object

2008-02-02 Thread Glen Lipka
http://brandonaaron.net/docs/livequery/ This will do the trick. Glen On Sat, Feb 2, 2008 at 7:38 AM, wyo <[EMAIL PROTECTED]> wrote: > > Isn't it possible to bind to a previous created object? I've the > following code > >for (var i in data) { > $('#eintragsliste').append( >

[jQuery] How to bind to a dynamically created object

2008-02-02 Thread wyo
Isn't it possible to bind to a previous created object? I've the following code for (var i in data) { $('#eintragsliste').append( '' + ' ' + '' + '...' + ' ' + ' ' + '...' +

[jQuery] Re: Author of UI-Tabs Plug-in?

2008-02-02 Thread Lion29
@Klaus firstly I would like to say... GOOD work. Your tabs plugin is one of the best out there. But I would need (I am sure there are a lot out there like me) two more functionalities for the plugin to be perfect... 1. Right now the tabs function that upon every ajax load the new content is ADDE

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

2008-02-02 Thread Charles K. Clarkson
Gorkfu wrote: : How would I create a cap to put on the counter, so it doesn't go : higher than 250? Thanks Can you update us n the code you are using now and how (or why) you would want to add a cap? Two possibilities come to mind. Create an object that checks itself as it changes or ju

[jQuery] Re: Validation Plugin - Associate array naming with a single error label

2008-02-02 Thread Dave Stewart
Jorn, I've done some work on selectors for groups, and it's actually quite easy to select a group or sub group for validation, although I don't know the details of your implementation, so I wont suppose to imply anything. As usual I've uploaded some demo code for you to take a look. www.

[jQuery] Re: [validate] Validation Plugin - how to remove a control form validation

2008-02-02 Thread Dave Stewart
Hi Jorn, Firstly, thanks for putting the time into this. It is appreciated. I've updated the live page with some new code that strips the validation metadata and that portion works great in isolation. However, it leaves the form exposed if the email address does not validate the first time, as t

[jQuery] jQuery Plugin to show Table Headers always?

2008-02-02 Thread KnoxBaby
Hello, I have a very big table with many rows and columns. The first row and the first column contain some titles/descriptions. Is there a jquery plugin, that always shows the first column and the first row when I scroll to much to the right and/or bottom so that it they couldn't be seen anymore

[jQuery] Re: jQuert Validate 1.2 issues

2008-02-02 Thread Eridius
I am dont see what metadata has to do with this(at far as i know metadata in html is what you use inside the head tags, and also don't know what the rules-option is. Jörn Zaefferer wrote: > > > Eridius schrieb: >> um those is a little bit of an issue you you need you code to me valid. >> For

[jQuery] Re: jQuert Validate 1.2 issues

2008-02-02 Thread Jörn Zaefferer
Eridius schrieb: um those is a little bit of an issue you you need you code to me valid. For example required in not a valid attribute for an input so adding these webform attribute will make my code invalid. Just use metadata or the rules-option is you code for the w3c validator. Jörn

[jQuery] jquery reflection plugin

2008-02-02 Thread GianCarlo Mingati
Hi Folks is there any better way to add reflections to the images via the jquery.reflect.js plugin? http://summer.gcmingati.net $subnav.find("img").reflect({height: 0.3, opacity: 0.3}); won't add reflections to the images at the first-visit of the page, with Firefox. It seems (to me) that waiti

[jQuery] Re: Release: Tooltip plugin 1.2

2008-02-02 Thread [EMAIL PROTECTED]
Doesnt seem to be working on Safari.

[jQuery] Re: OT optimization > phpSpeedy

2008-02-02 Thread Tony
Here another very useful solution: http://perishablepress.com/press/2007/03/26/fast-effective-php-compression/ Enjoy Tony On Feb 2, 9:32 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > hi friends, > > we've been discussing now and then about optimization, reducing the > number of http