[jQuery] jQuery Flash Stacking Order

2009-10-15 Thread MauiMan2
I am working on a project now where I am cleaning up the code on a certain page. I am upgrading to using the jQuery Flash plugin as part of it. The only problem is that, once I made that upgrade, a small PNG image that needs to be placed over the Flash now goes behind the SWF object in the

[jQuery] Re: [autocomplete] Callback for selected match

2009-10-15 Thread Evgeny Bobovik
use the onchange event for select Gk___ 2009/10/14 eka ekagauranga...@gmail.com: Hi Is there anyway to pass a callback to the options to be called when an option is selected? Regards Eka

[jQuery] Join element sets?

2009-10-15 Thread Dennis Madsen
I have two element sets: $(.contentBox) and $(.referencesImage). How can I join the elements in this sets? I would like to join the sets, since I'm adding the exact same hover function on both element sets. $(.contentBox).hover(function(event){ ..do something

[jQuery] fadeIn and Out not working on IE but working on firefox

2009-10-15 Thread Mr J
hi, i run into a probelm when i want to use the fadein and out function for a new dynamic added inputs. you can add inputs dynamically and i want to do that with fadeIn and Out. it is working great in firefox but not in IE. i think the problem is the new added rows are not in the DOM when the

[jQuery] Re: Join element sets?

2009-10-15 Thread Dennis Madsen
I would like to do something like: $(.contentBox).$(.referencesImage).hover(function(event){ ..do something },function(event){ ..do something }); Where the hover-function is both for both element sets. On 15 Okt., 10:48, Dennis Madsen

[jQuery] Re: Join element sets?

2009-10-15 Thread Evgeny Bobovik
try to do so $(.contentBox, .referencesImage).hover(function(event){ ..do something },function(event){ ..do something }); Gk___ 2009/10/15 Dennis Madsen den...@demaweb.dk: I would like to do something like:        

[jQuery] Re: Join element sets?

2009-10-15 Thread Richard D. Worth
Here are two options: $('.contentBox, .referencesImage').hover(fn, fn); $('.contentBox').add('.referencesImage').hover(fn, fn); - Richard On Thu, Oct 15, 2009 at 5:06 AM, Dennis Madsen den...@demaweb.dk wrote: I would like to do something like:

[jQuery] Re: Join element sets?

2009-10-15 Thread jack kitley
Hi $(.contentBox,.referencesImage).hover u tried that? 2009/10/15 Dennis Madsen den...@demaweb.dk I would like to do something like: $(.contentBox).$(.referencesImage).hover(function(event){ ..do something },function(event){ ..do something

[jQuery] Re: Join element sets?

2009-10-15 Thread Dennis Madsen
Thanks! On 15 Okt., 11:16, jack kitley jackkit...@googlemail.com wrote: Hi $(.contentBox,.referencesImage).hover u tried that? 2009/10/15 Dennis Madsen den...@demaweb.dk I would like to do something like:        $(.contentBox).$(.referencesImage).hover(function(event){        

[jQuery] Re: fadeIn and Out not working on IE but working on firefox

2009-10-15 Thread Jonathan Vanherpe (T T NV)
Mr J wrote: hi, i run into a probelm when i want to use the fadein and out function for a new dynamic added inputs. you can add inputs dynamically and i want to do that with fadeIn and Out. it is working great in firefox but not in IE. i think the problem is the new added rows are not in the

[jQuery] Re: fadeIn and Out not working on IE but working on firefox

2009-10-15 Thread Mr J
hi, thanks for the quick answer, i did try it but it did not work, i think is something to do with the DOM because the inputs are not in the DOM when the page is loaded but i do not see how to solve it. thanks for the help On 15 okt, 11:21, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: Mr

[jQuery] Re: Superfish:'null is Null or not an object

2009-10-15 Thread Simael
Hi, If this tab will be clicked I receive the JS error, that 'null' is Null or not an object. I got it. I replaced $(document).ready(function() { $('ul.sf-menu').superfish( { animation: {height:'show'}, delay: 1200 } ); } ); with jQuery(function(){ jQuery('ul.sf-menu').superfish({

[jQuery] password strength meter

2009-10-15 Thread factoringcompare.com
Hi, I’m using jQuery: form wizard plugin (http://home.aland.net/sundman/) with a password strength meter plugin by http://www.rvdevsign.net/ressources/javascript/jpassword-plugin-jquery.html. The form wizard breakes up a long form into smaller chuncks. Last page the user can create an account.

[jQuery] validation on multiple text inputs on button click

2009-10-15 Thread jackkit...@gmail.com
Hi All Was wondering if anyone could help me on this problem i am having. I have a form which contains a foreach loop and this loop outputs as many generated input fields as there is data in the database. My jQuery validation on submit is only seeming to validate the first input box of

[jQuery] IE: call function defined in ajax loaded page

2009-10-15 Thread Michael Anckaert
Hello everyone, In one of my projects I use simplemodal to show an ajax loaded dialog. The HTML page loaded by the ajax call defines a javascript function setup_dialog() that I use to initialize some functions specific to that page. In the simplemodal callback onShow I call setup_dialog(). This

[jQuery] Re: jQuery speed seems slow

2009-10-15 Thread k3liutZu
On Oct 15, 8:42 am, JenniferWalters jenniferwalt...@email.com wrote: I do agree on smaller DOM trees, a user really is not able to tell the difference and jQuery is so much easier to code. What Michael and James are trying to tell you is that the jQuery selector for ID (eg. $('#myID'))

[jQuery] migration to jquery 1.3.x

2009-10-15 Thread arena
Hi i was using extensions such as jquery.dimensions ui.mouse ui.slider what append to these extensions. thanks for your help.

[jQuery] [Newbie question]: What knowledge is required for Jquery

2009-10-15 Thread nitesh
Hi, Im a completely new to Jquery. Can I start it instantly or I need to first attain certain level of expertise in Html/CSS/JS Below is my current expirience with above 3: . HTML/CSS: Basic knowledge . Javascript/DOM: No knowledge at all Hence, let me know the roadmap to learn Jquery

[jQuery] HoverIntent JQuery not working

2009-10-15 Thread mlemieux86
Hey, I just created a nav bar and it looks and works as wanted when I am just previewing it in a browser, but as soon as I upload it to my godaddy hosting account the hover Intent no longer works and it is just a normal CSS drop down menu. Anyone know how to fix that I have been trying new

[jQuery] Template plugin. Fill your template string with JSON data

2009-10-15 Thread iggant
Hi, I have new JQuery plugin that I want to share. This plugin fill any special formated string with existing json data, so you can automatically do this. It's very easy to use, and amazing simple. Please, have a look http://iggant.blogspot.com/2009/09/jquery-template-plugin-fill-template.html.

[jQuery] function not defined problem in firefox

2009-10-15 Thread saltarella
Hello, I get this message from firefox when the javascript function loadContent is called: An error exists inside your ontoggle function: ReferenceError: loadContent is not defined Aborting execution of function. I have an animated menu (#left) that expands and collapse (the text in #tavira) and

[jQuery] (validate) preclude, deny, disallow or prohibit URLs from submitting

2009-10-15 Thread gdekadt
Hi all sorry - I can't figure this out and I'm a little thick. I'm using the great validation plug-in from bassistance and would like to use it to stop a form submitting contents of a *required* comment field when a URL is present in there. [Getting spam links submitted to a contact from] I've

[jQuery] Re: jQuery speed seems slow

2009-10-15 Thread Nick Fitzsimons
2009/10/14 James james.gp@gmail.com: Unless your DOM tree is huge and you're trying to select something massive in one go, the performance difference between a simple jQuery ID selector (e.g. $(#myID)) vs. a native getElementById selector should be very negligible, because jQuery uses

[jQuery] Urgent problem in wordpress

2009-10-15 Thread Rupak
Hi all I am new to wordpress.I am using $.ajax $.ajax({ type: POST, url: some.php, data: name=Johnlocation=Boston, success: function(msg){ alert( Data Saved: + msg ); } }); But it will convert into #038. can any one tell me how to fixed this.

[jQuery] Re: Urgent problem in wordpress

2009-10-15 Thread Richard D. Worth
data: { name: 'John', location: 'Boston' } - Richard On Thu, Oct 15, 2009 at 7:27 AM, Rupak rupakn...@gmail.com wrote: Hi all I am new to wordpress.I am using $.ajax $.ajax({ type: POST, url: some.php, data: name=Johnlocation=Boston, success: function(msg){ alert( Data

[jQuery] (validate) equalTo with complex names

2009-10-15 Thread ade
HI Wondered if someone could help. I need to run a equalTo validation check on some inputs that use complex ids, they have fullstops in. I am trying to add the rules (using quotes also as specified) as per the documentation but it still doesnt seem to work. Code is here:

[jQuery] Superfish - Drop Down not displaying

2009-10-15 Thread Superfish Query
Hello, I am using the Superfish Module and have been able to successfully install and use it. The problem I am having is that the sub menus are being drawn behind the banner / header area and therefore you are not able to see them or click on them. Please let me know whether to change the

[jQuery] Re: migration to jquery 1.3.x

2009-10-15 Thread Richard D. Worth
On Thu, Oct 15, 2009 at 6:37 AM, arena andre.ren...@gmail.com wrote: Hi i was using extensions such as jquery.dimensions Built-in to jQuery 1.3.x ui.mouse ui.slider See jQuery UI home: http://jqueryui.com/ download builder: http://jqueryui.com/download ui.mouse is built-in to

[jQuery] Re: Superfish - Drop Down not displaying

2009-10-15 Thread rupak mandal
Increase the hight of #pillmenu to 87px or as per your requirement. In template.css Thanks Rupak On Thu, Oct 15, 2009 at 5:47 PM, Superfish Query somirasoo...@gmail.comwrote: Hello, I am using the Superfish Module and have been able to successfully install and use it. The problem I am

[jQuery] Re: (validate) equalTo with complex names

2009-10-15 Thread Jaggi
oOps thinks that wrong: $(input[name='emailAddress.emailRepeated']).rules(add, { equalTo: #emailAddress.email }); i think you get the idea though. On Oct 15, 2:07 pm, Jaggi jaggi_2...@hotmail.com wrote: I had this problem recently but the only way i managed to

[jQuery] Re: (validate) equalTo with complex names

2009-10-15 Thread Jaggi
I had this problem recently but the only way i managed to get around it was to do it via the custom caller. So for you you'd do: $(input[name='emailAddress.email']).rules(add, { equalTo: #emailAddress.email }); On Oct 15, 12:36 pm, ade ade.godd...@gmail.com

[jQuery] Re: : What knowledge is required for Jquery

2009-10-15 Thread MorningZ
You are the only person who can determine what you are capable of... i'd suggest walking through a site like this (even though it's older jQuery, it's still valid): http://15daysofjquery.com/ look on the right in the Archive section and start at Day 1 On Oct 15, 5:56 am, nitesh

[jQuery] Re: (validate) equalTo with complex names

2009-10-15 Thread Ade Goddard
Thanks Jaggi Yeah that put me on the right path the below works: $(document).ready(function(){ $(#registrationDetails).validate({ rules: { emailAddress.email: required email, emailAddress.emailRepeated: { equalTo: input[name='emailAddress.email'] } } }); }); thx again Ade On

[jQuery] Re: (validate) equalTo with complex names

2009-10-15 Thread elubin
this initial example probably didn't work because of the period. there is a documented way to use periods in jquery... in the FAQ section How do I select an element that has weird characters in its ID? http://docs.jquery.com/Frequently_Asked_Questions eric On Oct 15, 7:36 am, ade

[jQuery] Re: (validate) equalTo with complex names

2009-10-15 Thread Ade Goddard
Yeah i was aware of that but thought that the quoting within the rules method would overide it:) Glad its fixed now thx On Thu, Oct 15, 2009 at 2:33 PM, elubin elu...@yahoo.com wrote: this initial example probably didn't work because of the period. there is a documented way to use periods in

[jQuery] Re: Download Avira 2010 an key 2014

2009-10-15 Thread brian
I noticed that this supposedly was sent from John Resig's acct. The same message was sent to the CakePHP group, spoofing my acct. It also appeared in my Sent folder, which is disconcerting to say the least. John, I've contacted gmail but, if you learn anything about this, I'd appreciate a word

[jQuery] Re: HoverIntent JQuery not working

2009-10-15 Thread Charlie
double check your js file paths are valid and files are being loaded posting a link always helps also mlemieux86 wrote: Hey, I just created a nav bar and it looks and works as wanted when I am just previewing it in a browser, but as soon as I upload it to my godaddy hosting account the

[jQuery] Re: Superfish - Drop Down not displaying

2009-10-15 Thread Charlie
take out overflow: hidden from #pillmenu line 122 of template.css this causes anything that expands within the menu to be hidden rupak mandal wrote: Increase the hight of "#pillmenu" to 87px or as per your requirement. In "template.css " Thanks Rupak On Thu, Oct 15,

[jQuery] Re: jQuery Flash Stacking Order

2009-10-15 Thread Karl Swedberg
On Oct 15, 2009, at 2:05 AM, MauiMan2 wrote: I am working on a project now where I am cleaning up the code on a certain page. I am upgrading to using the jQuery Flash plugin as part of it. The only problem is that, once I made that upgrade, a small PNG image that needs to be placed over the

[jQuery] Re: jQuery Flash Stacking Order

2009-10-15 Thread MauiMan2
One thing that often helps in these cases is to set wmode=transparent in the object's params --Karl Thanks. I think I have done that. You can see the page I am working on here: http://www.cmzmedia.com/enableit/template.html and the page where it does work (but with the old-style Flash

[jQuery] Autocomplete and enter key event

2009-10-15 Thread Benjamin
Hi, I have some problem with autocomplete plugin. When selecting option into autocomplete drop down list, focus stays on input field. So when Enter key is hit to select option, event is catched by the input field. In my case that's a problem because I submit form on enter key event and a

[jQuery] Case sensitive XML tags

2009-10-15 Thread Dalibor Nasevic
Is it possible to create case sensitive XML tags? jQuery('xml/').append(jQuery('Login/').attr({userName: 'u', passWord: 'p'})).html() should produce: Login passWord=p userName=u/Login but not: login password=p username=u/login Cheers, Dalibor Nasevic http://dalibornasevic.com/

[jQuery] Jquery site navigtion

2009-10-15 Thread Jim Byrnes
What is the best way to find plugins on the jQuery site? Yesterday I saw a plugin mentioned and wanted to learn more about it. I went to the jQuery site and entered its name in the search box thinking I would be taken to the download page for it, but instead got what looked like portions of

[jQuery] Re: superfish

2009-10-15 Thread robocoder
My understanding is that error occurs if ga,js didn't load. On Oct 1, 4:42 am, glimbeek gvanlimb...@gmail.com wrote: Thanks for the reply. I do have other code on my page but if I remove it all nothing changes, if I remove the tracking code the error disappears... I'll google some more :/

[jQuery] Re: jQuery UI widgets leaks memory for dynamic content manipulation

2009-10-15 Thread Ericos
Thanks Karl. I have already posted this on the jQuery UI discussion group. Hope someone will look at it. Btw, don't you also experience such issues with memory leaks? regards, Ericos On Oct 13, 9:33 pm, Karl Swedberg k...@englishrules.com wrote: Would you mind posting this question to the

[jQuery] Re: superfish

2009-10-15 Thread robocoder
helper.php isn't part of the superfish distro. You should take this up with the joomla mod developer. On Sep 30, 10:09 am, sanni46 susanne.goed...@ozlo.de wrote: Hallo, I would like to have two verticalsuperfish-menu-modules in one template on the left hand side.. I tried it, the first menu

[jQuery] Re: [superfish] How to focus on clicked menu item after menu item is clicked with jQuery ?

2009-10-15 Thread robocoder
Do you mean something like the (customized) superfish menu on http://piwik.org/demo/ ? On Sep 29, 3:34 am, Tharindu Madushanka tharindu...@gmail.com wrote: Hi, I am new to jQuery and usingsuperfishpopup menu widget to create a menubar. I have only four menus and 3 of them are not drop

[jQuery] Re: Finding previous next input siblings encapsulated in other li ?

2009-10-15 Thread Julien
Hi again, My question was probably too long as I got no answer... When a change occurs is one of the following text fields, does someone know how to scan through all the text inputs located after it? fieldset name=myfields ul liinput type=text name=txt_one / input type=checkbox

[jQuery] Re: jQuery Flash Stacking Order

2009-10-15 Thread MauiMan2
Actually, I think I have it working now. Thanks, everyone.

[jQuery] Re: Switch image source during toggle

2009-10-15 Thread Gremlyn1
Hoping for some help still... I see the jQueryUI site has drop downs that do what I want, there has to be a plugin or an easy way to do this somewhere! I don't mind if i have to implement a new, full toggle script to do it either. On Oct 7, 8:53 am, Gremlyn1 greml...@gmail.com wrote: Bump? On

[jQuery] Re: Switch image source during toggle

2009-10-15 Thread Nikola
You could toggle classes making sure each class is styled with the appropriate image, use the css() method to change the background / background-image property or, if your working with an img element, you can use the attr() method to change the images src. On Oct 2, 12:26 pm, Gremlyn1

[jQuery] Jquery for show / hide item in list

2009-10-15 Thread dEwA nich
Dear friends, I'm looking for jquery scripts to show/hide element in unordered list like http://bbc.co.uk with +, - button. I've got some script from here : http://paste.pocoo.org/show/86584/ and http://www.killersites.com/forums/topic/780/jquery-add-remove-list-item/. But I little confused to

[jQuery] Re: Finding previous next input siblings encapsulated in other li ?

2009-10-15 Thread Karl Swedberg
Provided that all the text inputs located after it are within the same ul, this should do it: $('input:text').change(function() { $(this).parent().nextAll().find('input:text').doSomething(); }); If you need to check in multiple uls or fieldsets, we'll need to tweak the DOM traversal to

[jQuery] Re: 1.3.2, live(event), and trigger(event, [value1, value2])

2009-10-15 Thread Val
... Anybody? At all? On Oct 12, 5:04 pm, Val tonightslasts...@gmail.com wrote: Hello all, I cannot for the life of me figure out the syntax given in the subject line. Through all of the following, I am referring to the examples tab of the following

[jQuery] Adding a close link button button at the end of Autocomplete dropdown

2009-10-15 Thread Thomas
Hi, I am using Jquery autocomplete dropdown, could you please help to add a close link button at the end of the dropdown like the google suggest ? I am new to jquery, Thanks in advance Thomas

[jQuery] jQuery UI Tabs - Select Tab?

2009-10-15 Thread Collectonian
We are using the jQuery UI's tabs functions to do a tab on a web application. The tabs are loading fine and work perfectly when clicking them. In some instances, though, we want to default the page to have a specific tab selected on load. How do we do this? We tried looking through the docs, but

[jQuery] Re: : What knowledge is required for Jquery

2009-10-15 Thread Astropos
Hey Nitesh, I'm learning myself too, here's what I'd say: Do you currently lay out pages with div's? Got div id=foo... ? or even better div id=foo class=bar ... ? then you're set - Jquery operates on your CSS definitions. #foo refers to a div called foo .bar refers to a css class called bar So

[jQuery] Re: Jquery for show / hide item in list

2009-10-15 Thread Charlie
there was some very interesting code on this list a few months ago that should help you out couldn't get the thread from google group search but can see whole thread here http://www.mail-archive.com/jquery-en@googlegroups.com/msg77035.html look toward end of thread for mkmanning solution,

[jQuery] Re: jQuery UI Tabs - Select Tab?

2009-10-15 Thread MorningZ
$(#tabs).tabs(select, idx); where idx is the numeric index of the tab to select On Oct 15, 11:53 am, Collectonian collecton...@eclectic-world.com wrote: We are using the jQuery UI's tabs functions to do a tab on a web application. The tabs are loading fine and work perfectly when clicking

[jQuery] Superfish, Main Menu Submenus

2009-10-15 Thread hbsnam
Hi all Would like to know how to make the main menu button unlinked, i.e. not linking to any article etc in Joomla, instead visitors have to navigate to the submenu and select a section / page there. Is this controlled under superfish or Joomla (if Joomla, where do I look?) See

[jQuery] Validation plugin: textarea to allow only digits, but allowing linebreaks?

2009-10-15 Thread Renie
I'm using the Jquery Validation Plugin on my site, and I have a textfield that validates to only allow numbers. However, that also doesn't allow linebreaks - which I need to have! Is there a way around this? Here's the working code: html head script

[jQuery] A quick note about CFJS

2009-10-15 Thread Chris Jordan
I just wanted to let everyone know that CFJS 1.1.11 is now available. There was a small bug in two of the list functions (ListContains and ListContainsNoCase). You can read about the changes herehttp://cjordan.us/index.cfm/2009/10/15/CFJS---Bug-Fix-Release. You can download the latest version

[jQuery] Re: Validation plugin: textarea to allow only digits, but allowing linebreaks?

2009-10-15 Thread Leonardo K
You can create your own validate method: http://docs.jquery.com/Plugins/Validation/Validator/addMethod#namemethodmessage jQuery.validator.addMethod(digitsAndLineBreak, function(value, element) { return /^[\d|\n]+$/.test(value); }, Please enter only digits); then:

[jQuery] Re: Listmenu - tips for making it faster in IE

2009-10-15 Thread Anoop kumar V
Hi Jack, Are you still planning on implementing this feature of putting a message / progress bar for IE (and firefox to keep it consistent)? Or have you come up with any better ways of handling this. Thanks, Anoop On Mon, Aug 17, 2009 at 11:41 PM, Anoop kumar V anoopkum...@gmail.comwrote: Hi

[jQuery] Superfish

2009-10-15 Thread Kerie
How do you change the height between the 2 rows when using superfish nav-bar example? Is there a CSS property that will change the height?

[jQuery] Re: loading message shows up after page has loaded

2009-10-15 Thread sdtacoma
Hi Karl, I believe/hope I did everything that you asked. Problem still exists... http://meded.ucsd.edu/testQuery.cfm I do appreciate your help! Josh On Oct 14, 11:04 am, Karl Swedberg k...@englishrules.com wrote: Wow, easy there Karl. I was just showing you working examples of the

[jQuery] Re: Locking submit button interferes with validation plugin

2009-10-15 Thread Opally
thanks for the reply James! I'm looking at the jquery Validation plugin, and I don't see how the function you offered integrates with it. Can you offer more detail? Perhaps I need to modify validator to make these changes in the submit button? I'm hoping the author of Validation will see this

[jQuery] Re: Problems with load() in IIS?

2009-10-15 Thread Scogle
Thanks, I'll look into that. I had a feeling that it was a setup issue, but I wasn't really sure yet. I'm just trying to load() an html file, which is why this issue seems so strange. On Oct 12, 7:45 pm, James james.gp@gmail.com wrote: Sorry, I meant VERB, not VERY: GET (and maybe POST)

[jQuery] Re: Problems with load() in IIS?

2009-10-15 Thread James
I think that by default in IIS, .html filetypes will not accept POSTs. load() in jQuery is GET by default but if you put something in the data parameter, it will a be converted to a POST. Do you think that's what's happening? Unless your .html file has be configured to do server-side processing,

[jQuery] Re: Jquery site navigtion

2009-10-15 Thread Richard D. Worth
On Thu, Oct 15, 2009 at 10:50 AM, Jim Byrnes jf_byr...@comcast.net wrote: What is the best way to find plugins on the jQuery site? Yesterday I saw a plugin mentioned and wanted to learn more about it. I went to the jQuery site and entered its name in the search box thinking I would be taken

[jQuery] Show images with delay...

2009-10-15 Thread -e-train
All - How would i get the following effect. load the page and and image appears, then after 1 second, another image appears next to the previous one, then after one second, another image apears next to the previous one, etc... so each second a new image is placed in the line of images,

[jQuery] Re: Locking submit button interferes with validation plugin

2009-10-15 Thread James
You can just disable the submit button with jQuery easily. $(#myForm).bind(submit, function() { $(this).validate(validation_options); var valid = $(this).valid(); if (valid) { // disable submit button $(#submitBtn).attr('disabled','disabled');

[jQuery] Re: Show images with delay...

2009-10-15 Thread James
You use setInterval in Javascript to execute a callback function every so milliseconds: window.setInterval(doSomething, 1000); // 1000ms = 1sec function doSomething() { // code to change images } On Oct 15, 11:25 am, -e-train etrai...@gmail.com wrote: All - How would i get the following

[jQuery] Re: Superfish, Main Menu Submenus

2009-10-15 Thread Charlie
menus only manipulate what joomla sends to the page...best sorted out on a joomla forum hbsnam wrote: Hi all Would like to know how to make the main menu button unlinked, i.e. not linking to any article etc in Joomla, instead visitors have to navigate to the submenu and select a section

[jQuery] Re: Jquery site navigtion

2009-10-15 Thread Jim Byrnes
Richard D. Worth wrote: I'm assuming you're on http://plugins.jquery.com/ and using the search box in the upper-right called 'Search Plugins'. That searches all content on plugins.jquery.com, showing plugins and issues. If you look at the top of the left sidebar you'll see an advanced search

[jQuery] Re: Jquery site navigtion

2009-10-15 Thread Richard D. Worth
On Thu, Oct 15, 2009 at 6:38 PM, Jim Byrnes jf_byr...@comcast.net wrote: Maybe it has something to do with the fact that when I clicked on plugins-browse by name I ended up at a blank page. That looks like a bug, but I think a separate issue. Please create a ticket here The all

[jQuery] jquery preload images

2009-10-15 Thread kknaru
ok, so i have this slideshow.html containing just a bunch of pictures, and the index.html. index.html a href=click/a ul/ul slideshow.html liimg src=1.jpg alt= //li liimg src=2.jpg alt= //li liimg src=3.jpg alt= //li and i have my script like this; $(document).ready(function(){

[jQuery] Best way to construct DOM objects

2009-10-15 Thread Frederic Laruelle
Hi, JQuery (is new to me and) seems very good at querying the document object and modifying it. I am looking to create document fragments, assemble them, then insert them into the document object. eg, creating tables with variable contents and amounts of columns... Is this a use case that

[jQuery] $(document).ready firing before Google Maps scripts are fully loaded

2009-10-15 Thread George V. Reilly
About 1 time in 10, I get an error during my $(document).ready callback because Google Maps' loader hasn't pulled in all of its JavaScript dependencies yet. Using Web Developer View Source View Generated Source, here's what the head of my document looks like when I get such an error. head

[jQuery] jeditable - setting a different url

2009-10-15 Thread pixeline
Hi! I'm trying to use the jeditable plugin to update a lot of different strings coming from various part of the database. I would like to set it like this: $(span.editInPlace).editable($(this).attr('rel'), { indicator : 'Un instant, sauvegarde en cours...', tooltip : 'Cliquez

[jQuery] Re: Best way to construct DOM objects

2009-10-15 Thread Karl Swedberg
Hi Fred, I'll answer your second question: On Oct 15, 2009, at 9:03 PM, Frederic Laruelle wrote: On a related note, how does JQuery allow you to nest append statements? Since chaining returns the parent element (matched by $), the following statement obviously doesn't work as intended:

[jQuery] Re: $(document).ready firing before Google Maps scripts are fully loaded

2009-10-15 Thread Dave Methvin
So all those extra scripts are injected into the head with document.write? If so they should have definitely been there before any script below them executed. Have you found the place where Google Maps is actually doing the document writes for the other scripts? I am wondering whether it might be

[jQuery] Re: A quick note about CFJS

2009-10-15 Thread Jack Killpatrick
Great, thanks for the announcement. BTW. $.DollarFormat is a fav ;-) - Jack Chris Jordan wrote: I just wanted to let everyone know that CFJS 1.1.11 is now available. There was a small bug in two of the list functions (ListContains and ListContainsNoCase). You can read about the changes here

[jQuery] Re: Best way to construct DOM objects

2009-10-15 Thread Dave Methvin
There are a lot of ways to accomplish this. Karl's post demonstrated one way to create larger fragments directly with jQuery. In addition to .append() you can look at using the .wrap() methods. Mike Geary may come by and give you a pointer to his DOM creation methods, which I used on several

[jQuery] Re: $(document).ready firing before Google Maps scripts are fully loaded

2009-10-15 Thread George V. Reilly
On Oct 15, 6:49 pm, Dave Methvin dave.meth...@gmail.com wrote: So all those extra scripts are injected into the head with document.write? If so they should have definitely been there before any script below them executed. Have you found the place where Google Maps is actually doing the

[jQuery] Re: Jquery for show / hide item in list

2009-10-15 Thread dEwA nich
I've tried that script, but why the jquery doesn't work?? I'm newbie in jquery. I write like these : script type=text/javascript $(document).ready(function(){ $('.main ul').each(function(){ var $this = $(this), lis = $this.find('li:gt(9)').hide(); if(lis.length0){

[jQuery] Script for tabs?

2009-10-15 Thread lukas
Can anybody direct me to a lightweight jquery script controlling tabs? I just want the activated tab to appear differently than the rest of the tabs. Thank you!

[jQuery] Validating Australian ABN numbers

2009-10-15 Thread Sam
ABN - Australian Business Numbers I knew they had to be numeric and 11 digits. Then i found this: http://www.ato.gov.au/businesses/content.asp?doc=/content/13187.htmpc=001/003/021/002/001mnu=610mfp=001/003st=cy=1 Which explains quite nicely how to validate a number. So I thought I would share

[jQuery] HELP!!! css content filters

2009-10-15 Thread huntspointer2009
- Can someone please help me solve the following issue? - How can I select and apply a 'background-color' to the following li/li tags using JQuery? ul class=item_list li/li li/li li/li!-- I want to select this one -- li/li!-- I want to select this one -- li/li li/li li/li!-- I want to select