[jQuery] Re: blockUI custom options not working

2008-10-23 Thread Microbe
> > Just about anything, if not all, you do with jQuery requires or makes > the most sense to have the DOM to be ready, it should be as automatic > as it gets writing that first line of code ...and the best way to make sure people who are new to JQuery understand this is if it is "made more cle

[jQuery] Re: (Resolved) jQuery.ui modal dialog with themeroller theme?

2008-10-23 Thread Shawn
Figured it out. Accidently. :) If the "ui-dialog" class is manually assigned to the dialog container before opening the modal dialog, the text boxes do not work right. However, if the class is not manually assigned and just treated normally, the text boxes work fine. I.e. the following

[jQuery] Re: cannot reset width value _ width(val)

2008-10-23 Thread Alexandre Plennevaux
Anybody, please ? On Thu, Oct 23, 2008 at 8:10 PM, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > Could anybody take a look at my problem please? I haven't made any > progress so far :( > > > On Thu, Oct 23, 2008 at 3:17 PM, pixeline <[EMAIL PROTECTED]> wrote: >> >> Hi all, >> >> i'm trying to

[jQuery] Re: event.preventDefault() seems to fail

2008-10-23 Thread Prajwala Manchikatla
You can think of stopPropagation. http://www.w3.org/TR/DOM-Level-3-Events/events.html#Events-flow I hope this might help you. On Sat, Oct 18, 2008 at 11:26 PM, Ryan Hullah <[EMAIL PROTECTED]> wrote: > > I've thought of that, but I'm not sure that would work for me. I only > want a sub section of

[jQuery] jQuery.ui modal dialog with themeroller theme?

2008-10-23 Thread Shawn
I'm finding that if I use any of the themes generated by the ui themeroller, I cannot use them with a modal dialog. The form elements cannot receive focus.. But if I switch to a non-modal dialog everything works. Anyone know any way around this? I really do need modal dialogs, but do not un

[jQuery] Re: filtering complex selectors

2008-10-23 Thread Dan Finch
Yeah holy cow, I meant " ", not ">". It's a strange edge case, I'm sure even wanting to do such a thing most of the time might indicate poor design. I'm injecting UI into arbitrary pages and want to style it without damaging the host page. Because of the way my style extension works, dynamic rules

[jQuery] Re: trying to get ajaxForm to use a dynamic class or id to prependTo

2008-10-23 Thread tripdragon
malsup wrote: > > > This is also not valid. 'this' in the success handler is not an > element, it is the options object (assuming you have the latest > version of the form plugin; in prior versions it was the window > object). From your code I can't really tell what you expected 'this' > to

[jQuery] Re: Toggle between backgrounds

2008-10-23 Thread Mauricio (Maujor) Samy Silva
CSS: .myDiv { width:500px; height:375px; background:#fff url(1.jpg) no-repeat; } .secondBack { background: #fff url(2.jpg) no-repeat; } --- JQuery: $(document).ready(function(){ $('.myDiv').click(function(){ $(this).toggleClass('seco

[jQuery] Re: Puedo indexar directamente los jquerys de Google?

2008-10-23 Thread Ariel Flesler
Esta esta lista por si no la conoces: http://lists.scriptia.net/listinfo.cgi/jquery-es-scriptia.net -- Ariel Flesler http://flesler.blogspot.com On Oct 23, 7:03 pm, "America|UNK" <[EMAIL PROTECTED]> wrote: > Habrá algún problema si lo pongo en mi head ? > http://jqueryjs.googlecode.com/ > fi

[jQuery] Re: thickbox breaking other javacript functions

2008-10-23 Thread pedalpete
Looks like this might not have been a Thickbox issue in the end. The flash which I was loading i think was doing some strange things to javascript. I resolved it by using an iframe with thickbox instead of ajax. On Oct 23, 1:40 pm, pedalpete <[EMAIL PROTECTED]> wrote: > I've been working on impl

[jQuery] Re: blockUI custom options not working

2008-10-23 Thread MorningZ
"Perhaps this could be made more clear on the demos page and in documentation to save you answering the question again." Just about anything, if not all, you do with jQuery requires or makes the most sense to have the DOM to be ready, it should be as automatic as it gets writing that first line o

[jQuery] My first attempt at showing/hiding div with jQuery

2008-10-23 Thread dsizemore
Hi, In my first attempt at showing and hiding a div with jQuery, I've hacked together this code and I'm looking for any thoughts on what I did wrong (if anything?) The code seems to work in FireFox, IE7, and Safari/Chrome. Opera and IE6 seem to work at random, so I'm not exactly sure what's up wi

[jQuery] Re: trying to get ajaxForm to use a dynamic class or id to prependTo

2008-10-23 Thread Mike Alsup
> http://www.pastie.org/299081 This code is not correct. This line is invalid: options = { target: update_id, clearForm: true, success: update_area(responseText)} it should be: options = { target: update_id, clearForm: true, success: update_area } You need to set the success property to a fu

[jQuery] Toggle between backgrounds

2008-10-23 Thread Da-Huntha
Hi, I have an element that when you click on it toggles between two background images. So far I haven't found anything in the documentation where I can do this easily. Can someone help me? Yours, Da-Huntha

[jQuery] Re: trying to get ajaxForm to use a dynamic class or id to prependTo

2008-10-23 Thread tripdragon
To further expand on my example. I now add in a fake html page that details the idea in html http://ldbss.com/rails/fake.html one Folder has many files. I need the folder form to target the files list and update their. The number of Folders is dynamic and can span many. tripdragon wrote: >

[jQuery] Re: jQuery.getScript problems on IE 7

2008-10-23 Thread Karl Rudd
Without seeing a live example page it is very hard to know what could be going wrong. My advice would be to try not to load the "protoculous-effects-shrinkvars.js" file via getScript(). Just include it as you would any other JavaScript file. Karl Rudd On Fri, Oct 24, 2008 at 4:19 AM, Alexsandro

[jQuery] Re: Get label text

2008-10-23 Thread shapper
yes, I have: var levels = []; levels = $('input:checked + label').map(function() { return $(this).text(); }); ... .append(levels.join(',')) Still having the same error ... On Oct 24, 1:04 am, William <[EMAIL PROTECTED]> wrote: > Perhaps use .append(labels.join(',')) > > Note that the snippe

[jQuery] Re: blockUI custom options not working

2008-10-23 Thread Microbe
Thanks Mike, That solved it - love your work!!! Perhaps this could be made more clear on the demos page and in documentation to save you answering the question again.

[jQuery] Re: Get label text

2008-10-23 Thread William
Perhaps use .append(labels.join(',')) Note that the snippet from Klaus uses var *labels*, so trying to use the Array.join method of *levels* (probably undefined) will likely not work ;) On Oct 23, 2:58 pm, shapper <[EMAIL PROTECTED]> wrote: > But I can join the labels can't I? > > I tried: > .ap

[jQuery] Re: Puedo indexar directamente los jquerys de Google?

2008-10-23 Thread William
http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery La URL está http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js On Oct 23, 2:03 pm, "America|UNK" <[EMAIL PROTECTED]> wrote: > Habrá algún problema si lo pongo en mi head ? > http://jqueryjs.googlecode.com/ > fi

[jQuery] Re: blockUI custom options not working

2008-10-23 Thread Mike Alsup
> It works fine, but I just can't get the custom message to work.  All > the demos use a button > > I have tried a number of variations including copying code straight > from the demos.  This should at least turn the overlay blue, but it > isn't - http//www/DearFamilyandFriends.com/tes.php > >

[jQuery] blockUI custom options not working

2008-10-23 Thread Microbe
Hey folks, I don't like to waste a list's time with a noob question, but I have come to my wits end on this. I am trying to use blockUI on a series of file upload fields on a page It works fine, but I just can't get the custom message to work. All the demos use a button I have tried a number

[jQuery] Re: BlockUI unchecks checkboxes

2008-10-23 Thread Mike Alsup
What exactly is the problem you're seeing? Could you possibly post a demo page somewhere? Mike On Oct 23, 10:22 am, Snooky <[EMAIL PROTECTED]> wrote: > Alright, so I saw that this issue had been raised before, but > apparently never actually fixed. > > I only tested it in FF and Chrome. > > To

[jQuery] $(element).animate() shifts elements out of order while animating

2008-10-23 Thread bulgarian388
Hi guys, I'm new to jQuery and I need some help. I have a UL with LIs. In each LI there is a DIV with a bunch of content. The LIs are set to display inline. Anyway, when I run the animate function, the LIs get shifted into their default display (a list) and when the animation completes, the LIs r

[jQuery] Re: can jquery slide a whole page up and down?

2008-10-23 Thread caturn88
Thanks but I have the script I want and this on only seems to move a portion of something when I need the whole page to move like I have. I just don't see why the page moves back to the top. For that matter I also need to link the btton being pressed to thescript anyway, that "Description" link is

[jQuery] Re: ajax upload file deletes input's paths...

2008-10-23 Thread ^AndreA^
I didn't solve the problem, I just found a workaround. bye On Sep 30, 10:13 am, "^AndreA^" <[EMAIL PROTECTED]> wrote: > Hello everyone, > > I'm uploading some images with AJAX (using ajaxfileupload), with a for > loop I upload more than one image... > > It works very well but I've got an issue

[jQuery] is this usefull as an lgpl-ed component? canvas fancy ajax loader icon

2008-10-23 Thread Rene Veerman
i've made a loader icon based on the canvas tag.. demo up at http://mediabeez.veerman.ws/mb/ this is an early draft, and i intend to add a bit more features (like scalability) and themes.. but i'm wondering if there would be an interest in a component like this esp with the still difficult

[jQuery] Puedo indexar directamente los jquerys de Google?

2008-10-23 Thread America|UNK
Habrá algún problema si lo pongo en mi head ? http://jqueryjs.googlecode.com/ files/jquery-1.2.6.min.js">

[jQuery] Re: Subheadings in tables

2008-10-23 Thread abramwell
Seeing as the Tablesorter plugin writes classes to the table header when it's sorted, I'd use this as a condition for showing / hiding your secondary table header. What are you looking to display in the second TH?

[jQuery] jQuery Treeview 1.4 by Joern Zaefferer

2008-10-23 Thread Cruizer
I am using this menu for a clients website, and I am having some problems with functionality. I may be reading it wrong, but in the documentation under "persist: 'location' " it states "looks within all tree nodes with link anchors that match the document's current URL (location.href), and if foun

[jQuery] Re: drag & drop not working under IE and Safari

2008-10-23 Thread ^AndreA^
I finally found out the problem... I had called a js variable "class" (var class;), which is a keyword. That's why it didn't work at all!!! bye On Oct 21, 4:44 pm, "^AndreA^" <[EMAIL PROTECTED]> wrote: > Hi, > > I'm working on this drag & drop > script:http://www.lesperimento.netsons.org/vari

[jQuery] Re: Cycle: Direct link from another page

2008-10-23 Thread isaacn
Thanks--that definitely got it a lot cleaner. I ended up needing to do: var $slide = $(window.location.hash); if ($slide.length) { // found a match on hash id var $slideshow = $slide.parent().parent(); var $i

[jQuery] Re: Get label text

2008-10-23 Thread shapper
But I can join the labels can't I? I tried: .append(levels.join(', ')) to added it to an element and I get the error in Firebug: levels.join is not a function Am I doing something wrong? Thanks, Miguel On Oct 23, 9:57 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > You could try this (untested)

[jQuery] Re: conditionally prevent blur

2008-10-23 Thread ricardobeat
The mousedown event seems to fire before the blur, at least on FF3, so I came up with this: function highlightFields (el) { var popclick = false; $(el) .focus(function () { $(this).css({"border":"1px solid #003399"});

[jQuery] Re: How to stop change event from firing

2008-10-23 Thread ricardobeat
This usually works: Colorado Idaho $('#field-state').val('idaho') or $('#field-state option[value=idaho]').attr('selected','selected') or var state = 'idaho'; $('#field-state').find('option[value='+state +']').attr('selected','selected'); could you provide a test page exhibiting your

[jQuery] Re: [validate] remote rule send field value by POST instead GET

2008-10-23 Thread Jörn Zaefferer
Currently there is no good option to customize the request. The easiest way may be using $.ajaxSetup, though that affects all requests. $.ajaxSetup({ type: "post" }); Jörn On Thu, Oct 23, 2008 at 11:04 PM, Àlex Corretgé <[EMAIL PROTECTED]> wrote: > Hi, > > I have a hidden field in a form that

[jQuery] Slides from the 2008 jQuery Conference

2008-10-23 Thread Rey Bango
Hi everyone, Here are slides from some of the presentations given at this year's jQuery Conference: http://www.slideshare.net/event/jquery-conference-2008 We expect more to be uploaded soon. As for videos, which I know you'll ask me about, we have only a few sessions recorded and will uplo

[jQuery] [validate] remote rule send field value by POST instead GET

2008-10-23 Thread Àlex Corretgé
Hi, I have a hidden field in a form that contain the JSON view of the form values. The Submit button fill it before the $('#form').submit(); I have some rules created by the user in a database, and I try to use Validator to manage this 'user validations' sending to a remote rule handler the 'vali

[jQuery] Re: [validate] problems with invalid-form.validate and remote rules

2008-10-23 Thread Àlex Corretgé
Ok Jörn, issue created http://dev.jquery.com/ticket/3516 thanks for all -- Atentament / Kind Regards Àlex Corretgé Serveis Informàtics Corretgé.com SLU http://corretge.cat/ LinkedIn: http://www.linkedin.com/in/corretge 2008/10/22 Jörn Zaefferer <[EMAIL PROTECTED]> > Apart from the fact

[jQuery] Re: Tabs - Preserve onclick on selected tab

2008-10-23 Thread Klaus Hartl
var $tabs = $('#example').tabs({ select: function(e, ui) { if (ui.index === $tabs.data('selected.tabs')) { $tabs.tabs('load', ui.index); } } }); --Klaus On 23 Okt., 16:58, fleabo <[EMAIL PROTECTED]> wrote: > Is it possible to click on the selected tab so as t

[jQuery] Re: Get label text

2008-10-23 Thread Klaus Hartl
You could try this (untested): var labels = $('input:checked + label').map(function() { return $(this).text(); }); That should give you an array with the label's text. --Klaus On 23 Okt., 22:47, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > This might be a tricky one ... I have been loo

[jQuery] Re: 44670 data() calls

2008-10-23 Thread ricardobeat
Most certainly bad code is causing too much loops or recursion somewhere. But some creature from the skies would have to literally 'shine a light' on this to be able to help without seeing a line of code. On Oct 23, 8:03 am, tom gee <[EMAIL PROTECTED]> wrote: > hi, > im trying to tackle a proble

[jQuery] Re: Image Display with Brightness Control?

2008-10-23 Thread ricardobeat
Those kind of effects are only possible in Firefox through the use of the element, which IE doesn't support. The only cross-browser ways do to it currently would be using Flash or processing the image server-side and reloading it. On Oct 23, 2:56 pm, "Josh Rosenthal" <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Am I rewriting something jQuery already does?

2008-10-23 Thread ricardobeat
You can use the plug-in architecture to make it easier: $.fn.addBehaviour = function(id, callback) { return this.click(function(){ var url = //create url $.ajax({ url: url, success: callback }); }); }; in this case you don't use the

[jQuery] Get label text

2008-10-23 Thread shapper
Hello, This might be a tricky one ... I have been looking into JQuery docs but I can't figure how to make this. I have the following: Administrator Collaborator How can I get, NOT the values, of all checked boxes BUT the label inner text of all checked boxes? Example: If Coll checkbox is

[jQuery] thickbox breaking other javacript functions

2008-10-23 Thread pedalpete
I've been working on implementing thickbox into my site, and I can launch the thickbox no problem, and the site works (all the javascript functions don't have a problem) before launching thickbox. However, once I launch thickbox, javascript functions that worked previously, no longer work. The li

[jQuery] Re: img load event not working

2008-10-23 Thread Ariel Flesler
$("...").bind("load", OnImageLoaded).attr('src','the_image_uri'); -- Ariel Flesler http://flesler.blogspot.com/ On Oct 23, 3:52 pm, Jimbo M <[EMAIL PROTECTED]> wrote: > I can't get this to work for anything.  I'm trying to set up an event > to fire a trigger when an image is done loading. > > Ne

[jQuery] Jeditable issue in Safari, Chrome

2008-10-23 Thread albrad84
I am using the Jeditable plugin and I have noticed a small issue in Chrome and Safari. If I edit the text, submit it or click away, then try to edit again, the textarea appears, but it is extremely small. For some reason, the height and width values that I specify in the Jeditable parameters are

[jQuery] sIFR troubleshoot

2008-10-23 Thread Bruno Souza
Hello, i'm a new one studying jquery and got caught on a little 'trouble'. While i was trying some animation effects, decided to try sIFR to replace some titles. Everything went fine, until i used animation and sIFR together. Whe the containers div have a hidden style the sIFR doesn't work proper

[jQuery] Re: Proposal: new method for determining variables without value

2008-10-23 Thread Ariel Flesler
Agree. Note that !!('') is also false. And [] == false. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 23, 2:11 am, "Michael Geary" <[EMAIL PROTECTED]> wrote: > I looked at James Edwards' post, and I'm not seeing how this function is all > that useful. (I mean no offense to pd; it's alway

[jQuery] Re: JQuery SEO Question

2008-10-23 Thread ricardobeat
Best practice is to set the href on the element that trigger's the AJAX call to the file URL it's loading, then preventing default. This way spiders will see it as a normal link and it will remain in context. You can also use a sitemap.xml file to tell bots where to search. - ricardo On Oct 23,

[jQuery] Re: New to Jquery : Using it on dynmaically created divs

2008-10-23 Thread ricardobeat
A more resilient solution is to use class names instead, you can't just drop/ignore the IDs altogether: Product 8234 (with background-image: url(downarrow.gif) on CSS) bla bla bla bla $('div.title').click(function(){ var arrow = ( $(this).next('.description').is(':visible') ) ? 'url(downarr

[jQuery] Re: stop link returning to the top

2008-10-23 Thread Ariel Flesler
This plugin can do: http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html If you don't want that behavior (of adding the hash to the address bar), don't add/keep the setting called 'hash'. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 23, 1:28 am, caturn88 <[EMAIL PROTECTED]> w

[jQuery] Re: can jquery slide a whole page up and down?

2008-10-23 Thread Ariel Flesler
This is a great plugin for that: http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html It's called LocalScroll, you set up the markup, include the necessary scripts, a simple call and it turns your site into a cool site. Here's one awesome site using it: (by Alex Willcocks) http:/

[jQuery] Re: indicator.gif does not exist

2008-10-23 Thread ricardobeat
It's just a placeholder name to show you where to put your own image. On Oct 23, 11:18 am, Éric Rogé <[EMAIL PROTECTED]> wrote: > Hello, > > First of all, congratulations for this great autocomplete plugin. > > I've noticed than on line 37 of the jquery.autocomplete.css , there is > a call to som

[jQuery] More efficient animation for multiple elements

2008-10-23 Thread c.barr
A cool effect I picked up from my Mootools days was the Elements.FX, see a demo here: http://demos111.mootools.net/Fx.Elements Basically it's a bunch of elements, you mouse over one and it gets larger while all the others shrink. A pretty cool effect for navigation menus. Here's what I wrote in

[jQuery] Re: .attr('height')

2008-10-23 Thread ricardobeat
jQuery is supposed to briefly "show" the element to get its height/ width, then hide it again, this shouldn't be happening. Is your page valid xhtml? Couldn't you set the height and width inline attributes for the image? - ricardo On Oct 23, 1:51 pm, diego <[EMAIL PROTECTED]> wrote: > I've done

[jQuery] Re: Image Display with Brightness Control?

2008-10-23 Thread c.barr
I'm no expert on this, but I have a feeling you may have better luck in Flash for this purpose. Or maybe find a generic brightness setting that's good for all the images and just to a batch process on them and re-upload. Not an idea solutions, but I don't think any Javascript (that I know of any

[jQuery] Re: [autocomplete] do search on input focus

2008-10-23 Thread Jörn Zaefferer
Try this: $("...").autocomplete("url", { minChars: 0 }).focus(function() { $(this).click(); }); Jörn On Thu, Oct 23, 2008 at 9:38 PM, blasto333 <[EMAIL PROTECTED]> wrote: > > Still no luck, the plugin I am using is: > > http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ > > On

[jQuery] Re: [autocomplete] do search on input focus

2008-10-23 Thread blasto333
Still no luck, the plugin I am using is: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ On Oct 23, 6:21 am, "Isaak Malik" <[EMAIL PROTECTED]> wrote: > Oups, I think it should be: > > $(function() > { > > $("#category").focus(function(){this.autocomplete("do_search.php",{max:100

[jQuery] IE7, .find, .each, XML problem

2008-10-23 Thread Dough Boy
It is simple...it works in FF and Chrome (haven't tried other browsers). Here is the basic code: $(messages).find('item').each( function(){ alert($(this).attr('id')); }); If I alert the "messages" before this you can see the XML data in all browsers. For some reason IE 7 will not go "int

[jQuery] having trouble with scrolling in IE6

2008-10-23 Thread oringeben
Hi there, I'm relatively new to jQuery and hoping you can help me. We've implemented a scrolling slideshow on the upper right part of this page: http://test.fakeclothing.net The left and right arrow buttons scroll the slides fine in IE7, FF2 and 3, etc. but it doesn't seem to work in IE6. >Fro

[jQuery] jCarousel callbacks with custom data

2008-10-23 Thread ml1
(Reposting because I failed to finish the subject line last time.) Is there a way to pass custom data to the jCarousel callbacks without creating a global? Ideally I'd like to be able to create arbitrary properties on the jCarousel object when it is initialized and then read them from the object

[jQuery] Re: trying to get ajaxForm to use a dynamic class or id to prependTo

2008-10-23 Thread tripdragon
To add to it. Here a different example http://www.pastie.org/299106 It sort of holds the var but can not find where it is in the dom, or it does not use $(this) -- View this message in context: http://www.nabble.com/trying-to-get-ajaxForm-to-use-a-dynamic-class-or-id-to-prependTo-tp20135944s

[jQuery] Re: cannot reset width value _ width(val)

2008-10-23 Thread Alexandre Plennevaux
Could anybody take a look at my problem please? I haven't made any progress so far :( On Thu, Oct 23, 2008 at 3:17 PM, pixeline <[EMAIL PROTECTED]> wrote: > > Hi all, > > i'm trying to kill the last bugs of lisapram.com before letting the > project go _ the issue i'm facing is that i can't manag

[jQuery] img load event not working

2008-10-23 Thread Jimbo M
I can't get this to work for anything. I'm trying to set up an event to fire a trigger when an image is done loading. Neither of the following snippets end up ever calling the OnImageLoaded function. $("...").load(OnImageLoaded) $("...").bind("load", OnImageLoaded) I've cleared the cache to en

[jQuery] Re: trying to get ajaxForm to use a dynamic class or id to prependTo

2008-10-23 Thread tripdragon
malsup wrote: > > > Can you post a link that shows the problem that you're having. I > didn't really understand your explanation. > > Mike > So here is what ntasfi and I worked on last night. By view of it it looks like it would work despite a typo thats in there http://www.pastie.org/29

[jQuery] Re: Cycle actions that happen faster than the javascript transitions

2008-10-23 Thread Mike Alsup
Can you give me an example of that scenario? Thanks. On Oct 13, 4:50 pm, sorahn <[EMAIL PROTECTED]> wrote: > For actions that happen faster than the javascript transitions, is > there a way to make the javascript break it's current loop, and start > doing the new action?

[jQuery] Re: trying to get ajaxForm to use a dynamic class or id to prependTo

2008-10-23 Thread Mike Alsup
Can you post a link that shows the problem that you're having. I didn't really understand your explanation. Mike On Oct 23, 1:36 pm, tripdragon <[EMAIL PROTECTED]> wrote: > This code at this moment prependTo to a static id. But I need to get it to > use something like this > $(this).parents('.

[jQuery] Re: Cycle actions that happen faster than the javascript transitions

2008-10-23 Thread Nachiket Ghumare
fuck u all motherfuckers.. just remove me from your list... On Thu, Oct 23, 2008 at 10:53 PM, sorahn <[EMAIL PROTECTED]> wrote: > > Fade in, fade out, slide, shuffle. Whatever cycle plugin i'm using. > > On Oct 13, 8:24 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > > What exactly are "javascript t

[jQuery] trying to get ajaxForm to use a dynamic class or id to prependTo

2008-10-23 Thread tripdragon
This code at this moment prependTo to a static id. But I need to get it to use something like this $(this).parents('.review_blocks').find('.review_list2:first') However no matter what I do, I can not get ajaxForm to hold a var like sort like this $('.new_review').ajaxForm(function()

[jQuery] Re: can someone please help with dynamic links problem?

2008-10-23 Thread RotinPain
you're welcome! On Oct 22, 7:45 pm, Flavio333 <[EMAIL PROTECTED]> wrote: > Thank You so much, after playing around with it ... it works!!! > Thank You SO SO Much!!! > > > > > > RotinPain wrote: > > > Sure, how i could miss that! > > > I would assign the categories Id number (like $catid) in the I

[jQuery] Re: Cycle actions that happen faster than the javascript transitions

2008-10-23 Thread sorahn
Fade in, fade out, slide, shuffle. Whatever cycle plugin i'm using. On Oct 13, 8:24 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > What exactly are "javascript transitions"? > > If you mean the fadeIn and fadeOut functions, a stop() will stop all > current animations. > > - ricardo > > On Oct 13, 5

[jQuery] Re: jQuery.getScript problems on IE 7

2008-10-23 Thread Alexsandro_xpt
Yes, I already use noConflict() function. I don't have any conflict, I just said the jQuery.getScript can't eval protoculous-effects-shrinkvars.js causing error in script. Can you help me please? On 22 out, 20:15, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > Have followed the advice > athttp://

[jQuery] Re: JQuery SEO Question

2008-10-23 Thread Bil Corry
edzah wrote on 10/23/2008 6:56 AM: > I am creating a product page that has a jquery script that hides/ > unhides divs to show the currently select product. I've just realised > that we have too many products to load them all on the same page. > Instead I want to load the content of each div in wh

[jQuery] Re: Disabling Enter key on the page

2008-10-23 Thread Richard D. Worth
You can check the target of the keypress, by e.target. Something like this (untested): $("#body").keypress(function(e) { if (e.which == 13 && !$(e.target).is("textarea")) { return false; } }); - Richard On Thu, Oct 23, 2008 at 12:37 PM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > >

[jQuery] Image Display with Brightness Control?

2008-10-23 Thread Josh Rosenthal
Hey Folks, So, a project involving allowing users to view scanned photos of historic structures has recently run into the problem that some of the photos are a bit dark relative to the originals, with some details being impossible to see in the jpg. When viewed on desktop, this is usually dealt wi

[jQuery] Drawing Associations

2008-10-23 Thread [EMAIL PROTECTED]
Hi All, I have a requirement where I am dropping two (or more) tables onto a droppable surface, what I need to be able to do is to create a visable association between two a row in each of the tables? A good example of where this is used is to create joins when connecting two database tables. D

[jQuery] Re: Jeditable and TinyMCE

2008-10-23 Thread Jeff
I am trying to use tinyMCE with the jEditable plugin and sometimes get an error. the html editor won't show up and i get the error t.win.document is null. anyone know what this is and if it's an MCE issue or jEditable? thanks Jeff On Sep 14, 4:02 pm, Mika Tuupola <[EMAIL PROTECTED]> wrote: > On

[jQuery] Am I rewriting something jQuery already does?

2008-10-23 Thread Justin
I'm new to jquery and I'm writing some code but I'd like to make sure I'm not rewriting something that already exists. Basically, I'd like to be able to do: $("#myAnchor").addBehavior($("#targetDiv", new MyNewBehavior); I implement a few functions for MyNewBehavior such as "buildURL" and "stuffT

[jQuery] Re: My first plugin ... need some help.

2008-10-23 Thread shapper
Thank you for your help and patience. It is working fine ... just a last question: I need to add an input with hidden value to each list item: ... The name of the input should be the name of the list passed. The following is what I have now, but I get an error on Firebug: $('').appendTo(opt

[jQuery] Disabling Enter key on the page

2008-10-23 Thread [EMAIL PROTECTED]
Hi, I'm not completely sure this is a jQuery issue or a javascript issue. Pardon me if I'm not in the right place. I have disabled the Enter key on the page like that : $("#body").keypress(function(e) { if (e.which == 13) { return false; } }); Now the issue I'm facing is that i

[jQuery] Having troubles accessing a variable in $.each

2008-10-23 Thread Ruby
I am having troubles with my google maps conversion to jquery. My markers are being generated from a get json request and then each marker is being created using $.each. My trouble happen when creating a side bar with buttons to open the info windows. I can create the button but can not seem to pu

[jQuery] Re: .attr('height')

2008-10-23 Thread diego
I've done it...i don't use display:none , instead i use visibility:hidden hideing the elements by js, works fine in all browser... http://www.pirolab.it/piro_09/index2.html tnx again Diego On 23 Ott, 16:46, diego <[EMAIL PROTECTED]> wrote: > weidc i found the bug, at the elements with css 'dis

[jQuery] Re: indicator.gif does not exist

2008-10-23 Thread Sam Sherlock
create one here http://www.ajaxload.info/ 2008/10/23 Éric Rogé <[EMAIL PROTECTED]> > > Hello, > > First of all, congratulations for this great autocomplete plugin. > > I've noticed than on line 37 of the jquery.autocomplete.css , there is > a call to some indicator.gif image : > > .ac_loading { >

[jQuery] Re: New to Jquery : Using it on dynmaically created divs

2008-10-23 Thread Jonathan Sharp, Out West Media
Hi James, Here's one way to rewrite it using jQuery: function divShowHide(divID, imgID) { var d = $('#' + divID).toggle(); $('#' + imageID).attr('src', 'Images/' + ( d.is(':visible') ? 'down' : 'up' ) + 'arrow.png' ); } Cheers, -Jonathan On Oct 23, 2008, at 8:42 AM, James2008 wro

[jQuery] Tabs - Preserve onclick on selected tab

2008-10-23 Thread fleabo
Is it possible to click on the selected tab so as to reload this tab? thanks

[jQuery] Re: .attr('height')

2008-10-23 Thread diego
weidc i found the bug, at the elements with css 'display:none' IE gives width and height = 0, that's why i have in return 0-0, i think i'll work on it, trying to overcome this IE bug.. Anyway thank you very much for support.. Diego On 23 Ott, 16:16, weidc <[EMAIL PROTECTED]> wrote: > oh my god

[jQuery] Re: jQModal loading separate urls into div

2008-10-23 Thread jalanbyers
Sorry for the sparseness, that's exactly what I was speaking of... unfortunately there's no way to do this with jQModal alone.. I was hoping that I had overlooked something in the docs.. thanks for the response! On Oct 23, 2:29 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > With so lit

[jQuery] Re: New to Jquery : Using it on dynmaically created divs

2008-10-23 Thread James2008
I forgot to mention. I want to do this so I can use the up and down animations for hiding/showing the divs (as currently there is none using the above method) On Oct 23, 2:42 pm, James2008 <[EMAIL PROTECTED]> wrote: > Hi. At the moment I've creating 2 divs for each record in a database. > One to

[jQuery] Re: [autocomplete] How to show the list above the input

2008-10-23 Thread David Esperalta
Hi again, In case that anyone have problems to show the list of proposal words bellow the input, dont forget (like me) the option "scrollHeight" of the plugin. Not is the solution of the issue that I send before, but, can be help you. In my case, the list have a little scroll height value, and n

[jQuery] BlockUI unchecks checkboxes

2008-10-23 Thread Snooky
Alright, so I saw that this issue had been raised before, but apparently never actually fixed. I only tested it in FF and Chrome. To reproduce: html: js: $(function() { $("input#mycheck").click(function() { // do something with ajax } $("#return").ajaxStart(function() {

[jQuery] New to Jquery : Using it on dynmaically created divs

2008-10-23 Thread James2008
Hi. At the moment I've creating 2 divs for each record in a database. One to first give a title for that piece of information and the second to be a show/hide div that gives furthur information upon clicking a little arrow. I generate both divs server side on an updatepanel refresh. I have them sh

[jQuery] indicator.gif does not exist

2008-10-23 Thread Éric Rogé
Hello, First of all, congratulations for this great autocomplete plugin. I've noticed than on line 37 of the jquery.autocomplete.css , there is a call to some indicator.gif image : .ac_loading { background: white url('indicator.gif') right center no-repeat; } I haven't found any indica

[jQuery] [autocomplete] How to show the list above the input

2008-10-23 Thread David Esperalta (dec)
Hi there! Have a nice day! Well... I try the jQuery autocomplete plugin and work fine, but, I want to show the list of proposal terms above the input and not bellow the input. In the "Show" method of autocomplete plugin I try a lot of things, to change this line: top: offset.top + input.offsetHe

[jQuery] Re: .attr('height')

2008-10-23 Thread weidc
oh my god this sucks. kind of frustrating huh? i'll keep on thinking about it. -weidc On 23 Okt., 15:56, diego <[EMAIL PROTECTED]> wrote: > Hi weidc, look at this..i've changed the .attr : > > var litebox = $(this).attr('rel'); > var altezza = $('#'+litebox+'>img.lite').attr('alt'); > > and the

[jQuery] Re: [validate] -- newbie getting started

2008-10-23 Thread whitewaterbug
I know this is like the "hello world" of validate...can anyone see the issue? This is my first time using jquery and validate so my troubleshooting skills are not there yet. On Wed, Oct 22, 2008 at 10:11 AM, whitewaterbug <[EMAIL PROTECTED]>wrote: > Thanks for the suggestions. I updated the for

[jQuery] Re: .attr('height')

2008-10-23 Thread diego
hi weidc, i've changed the .attr: var altezza = $('#'+litebox+'>img.lite').attr('alt'); var larghezza = $('#'+litebox+'>img.lite').attr('title'); and it works fine in ie6/7 http://www.pirolab.it/piro_09/index2.html but i can't use that attributes, i have to find a better way to do it. Any

[jQuery] Re: .attr('height')

2008-10-23 Thread diego
Hi weidc, look at this..i've changed the .attr : var litebox = $(this).attr('rel'); var altezza = $('#'+litebox+'>img.lite').attr('alt'); and the html and it works in ie6/7 , i really don't understand.. http://www.pirolab.it/piro_09/index2.html On 23 Ott, 15:23, weidc <[EMAIL PROTECTED]>

[jQuery] Re: Combining selectors

2008-10-23 Thread nguyenq
All of them work. Thank you all. On Oct 22, 6:35 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > That should work, but it's worth noting that the '@' in front of > attribute names has been deprecated. > > $('input[type=button],input[type=submit],input[type=reset]') > > jQuery also has pseudo-selecto

  1   2   >