[jQuery] Validating a group of elements together

2009-03-18 Thread anush
Is it possible to validate all the elements defined in a group together ? groups{ x: "a1 b1 c1" } I would like to validate a1, b1, c1 and display the error message until all the elements in a group become valid. - Anush

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread AnatolyG
that's why I just rewrote it. On Mar 19, 5:51 am, ricardobeat wrote: > The logic is all there in the source code. You can see that all of the > fieldset's children get removed and appended to the DIV - that would > include the first OL, that's why it doesn't work. This is just another > wild gue

[jQuery] jquery.dates

2009-03-18 Thread RyanEv
Hi All, I am using the jquery.dates plug-in (http://grover.open2space.com/ jquery.dates/documentation) with jQuery 1.3. To get started I just wanted to get the samples.html pagre up and working. It is working in FF with no problems, but in IE7 I get the "object does not support this property or

[jQuery] Javascript city state zipcode country component

2009-03-18 Thread Vijay Balakrishnan
Hi, Has anyone used a stable Javascript component for city, state,zip,country ? Doesn't matter if it costs money as long as it is usable off the shelf and has the US Military Area codes too. I have found a few by Googling but wanted to know if PJUG users had any good experience with any of these

[jQuery] Re: show hide random rows

2009-03-18 Thread Scott Sauyet
ricardobeat wrote: If you need performance, this should be it: http://jsbin.com/uvuzi/edit It sorts the rows using the "Fisher-Yates" shuffling algorithm. Despite throwing elements around in an array, it's faster than the pure mathematical solution because you don't need to filter out duplicat

[jQuery] Re: Using jQuery to parse XML

2009-03-18 Thread Matt
Here's the code where it gets called: vorticityStrengthMenu.onchange = function () { var bifData; var bifOptions = { lines: { show: true}, points: { show: true }, grid: { hoverable: true, clickable: true } };

[jQuery] Re: jQuery Cycle Form Submit and Next Issue

2009-03-18 Thread jenz
I just added this in: $('#ratingForm').submit(function() { $(this).ajaxSubmit(); return false; }); (and gave the form the ID of #ratingForm) The form submits the data for the first submit - but then any other submits - no

[jQuery] Re: Look for

2009-03-18 Thread ricardobeat
It's not faster, it actually adds a bit of overhead. From jQuery source code: // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { return (context || rootjQuery).find( selector ); that means everytime you type $('.someclass', this) it's effectively being "transla

[jQuery] Re: Using PHP templates and jQuery, browser load problems

2009-03-18 Thread brian
On Wed, Mar 18, 2009 at 8:30 PM, Christoph wrote: > > Hi guys, > > I have a quick problem I stumbled upon. > > Here is the background on the situation.  I'm creating a website that > uses templates for the header, body, and footer.  In a sense it is a > modular website with all .php extensions be

[jQuery] Re: Using 1.3 this: [class!=whatever] doesn't work.

2009-03-18 Thread ricardobeat
Your example is working fine for me with 1.3.2 - $('a[class! =whatever]'). $('a[className!=whatever]') should also work. cheers, - ricardo On Mar 18, 9:26 am, will wrote: > Hi, > Using :not() worked great. > Cheers > Will > > On Mar 18, 11:09 am, "T.J. Crowder" wrote: > > > Hi again, > > > *bl

[jQuery] cheap GHD Straightener,(www.518store.com)

2009-03-18 Thread ffffffffffffff
cheap GHD Straightener,(www.518store.com) Cheap GHD Iron,(www.518store.com) Cheap GHD iv styler(www.518store.com) ,Cheap ghd stylers,(www.518store.com) Cheap pink ghd,(www.518store.com) Cheap ghd ceramic iron,(www.518store.com) Cheap ghd flat iron,Cheap ghd (www.518store.com) mk5,cheap ghd

[jQuery] shoes on

2009-03-18 Thread ffffffffffffff
shoes on AIR Jordan 1 (paypal payment)(www.king-trade.cn ) AIR Jordan 2 AIR Jordan 3 AIR Jordan 4 AIR Jordan 5 (paypal payment)(www.king-trade.cn ) AIR Jordan 6 Rings AIR Jordan 6 AIR Jordan 7 AIR Jordan 8 AIR Jordan 9 (paypal payment)(www.king-trade.cn ) AIR Jordan 10 AIR Jordan 11 AIR Jordan 12

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread ricardobeat
The logic is all there in the source code. You can see that all of the fieldset's children get removed and appended to the DIV - that would include the first OL, that's why it doesn't work. This is just another wild guess, I can't test it: var legend = fieldset.find(':first'); var body =

[jQuery] GUCCI bags ( paypal payment )( www.king-trade.cn )

2009-03-18 Thread ffffffffffffff
GUCCI bags ( paypal payment )( www.king-trade.cn ) CHLOE bags CHANEL bags CLOTHES COACH bags ( paypal payment )( www.king-trade.cn ) DOLCE&GABBANA bags FENDI bags GUESS bags JIMMY CHOO bags ( paypal payment )( www.king-trade.cn ) JUICY bags LV bags PRADA bags ( paypal payment )( www.king-trade.cn

[jQuery] Fendi shoes (paypal payment)www.king-trade.cn )

2009-03-18 Thread ffffffffffffff
Footwear (paypal payment)www.king-trade.cn ) Paul Smith shoes Jordan shoes Bape shoes Chanel shoes (paypal payment)www.king-trade.cn ) D&G shoes Dior shoes ED hardy shoes Evisu shoes Fendi shoes (paypal payment)www.king-trade.cn ) Gucci shoes ` Hogan shoes (paypal payment)www.king-trade.cn ) Lv

[jQuery] Re: :visible change

2009-03-18 Thread ricardobeat
You're missing a closing parenthesis in your IF statement. Other than that, your code works fine: http://jsbin.com/oguqe/edit Something else must be wrong in your page, do you have a live sample we can look at? It all could also be rewritten as $('.closeEl').click(function(){ $(this).parent

[jQuery] Re: jQuery Cycle Form Submit and Next Issue

2009-03-18 Thread Mike Alsup
> The code that processes the form data uses a function: > > new_rating( $_POST['photo_id'], $user_id, $_POST['rating'] ); I meant the JavaScript code that submits the form. If you're not submitting it with JavaScript then the form POST will load the page at "/".

[jQuery] Using PHP templates and jQuery, browser load problems

2009-03-18 Thread Christoph
Hi guys, I have a quick problem I stumbled upon. Here is the background on the situation. I'm creating a website that uses templates for the header, body, and footer. In a sense it is a modular website with all .php extensions being called in the body document using for the header and being

[jQuery] Re: jQuery Cycle Form Submit and Next Issue

2009-03-18 Thread jenz
The code that processes the form data uses a function: new_rating( $_POST['photo_id'], $user_id, $_POST['rating'] ); The function takes the code and inserts it into a database after checking to make sure that the rating is coming from a user that has not voted already (IP address). If the IP is

[jQuery] Re: jquery web site performance quite slow on Plugins screens

2009-03-18 Thread Rick Faircloth
I got that a few minutes ago, too, with IE 7. Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of mark.schulthe...@gmail.com Sent: Wednesday, March 18, 2009 9:43 AM To: jQuery (English) Subject: [jQuery] jquery web site performance qu

[jQuery] Re: Select class="class1 class2" using jQuery

2009-03-18 Thread Klaus Hartl
http://www.w3.org/TR/CSS21/selector.html#class-html --Klaus On 19 Mrz., 00:04, Karl Rudd wrote: > Yes, it's standard CSS selector behaviour, so it's also standard > jQuery behaviour. > > Karl Rudd > > On Thu, Mar 19, 2009 at 6:32 AM, bill123 wrote: > > > I need to select an element like this:

[jQuery] Re: Superfish

2009-03-18 Thread  
You'll be waiting for a long time before getting an answer. My question about Superfish has been posted 1 week ago and still no answer at all. By the way, I can't answer yours ;P

[jQuery] Re: show hide random rows

2009-03-18 Thread ricardobeat
If you need performance, this should be it: http://jsbin.com/uvuzi/edit It sorts the rows using the "Fisher-Yates" shuffling algorithm. Despite throwing elements around in an array, it's faster than the pure mathematical solution because you don't need to filter out duplicate random numbers. An

[jQuery] Re: Problems whith the variables for a click function

2009-03-18 Thread James
Could you explain what exactly that's not working? On Mar 18, 7:41 am, Patrik wrote: > Hi! > > I try to make a script to change the prize between with tax and > without but I cant get it to work whats wrong? > > var sant = 'no'; > var pris = $('#productPrices').html(); > $('#tax a').click(functi

[jQuery] Re: superfish

2009-03-18 Thread ReneMarxis
sorry for double post

[jQuery] Re: How do I subtract 64 pixels from the value of a div's height?

2009-03-18 Thread Mauricio (Maujor) Samy Silva
Try: var contentDivHeight = parseInt($('#contentDiv').css('height')); var calculatedHeight = contentDivHeight - 64 + "px"; alert(contentDivHeight) alert(calculatedHeight) -Mensagem Original- De: "Jeremy Coulson" Para: "jQuery (English)" Enviada em: quarta-feira, 18 de março de 2009

[jQuery] Select empty tables

2009-03-18 Thread nguyenq
I'm trying to select tables whose cells are all empty. $ ("table:empty") seems to return tables with no body. $("td:empty") finds empty cells. Can anyone help with such a selector? Thanks.

[jQuery] Re: namespaces XML parsing

2009-03-18 Thread Karl Rudd
Just a quick note: If you use this with 1.3.x then you'll need to drop the "@", it's been removed from 1.3+. Karl Rudd On Thu, Mar 19, 2009 at 4:23 AM, Michael Lawson wrote: > We were running into a similar problem with an AJAX application and here is > what we did to get around namespaces: > >

[jQuery] Re: jQuery Cycle Form Submit and Next Issue

2009-03-18 Thread Mike Alsup
> I am trying to get the jQuery Cycle plugin to cycle through "slides" > that contain images with a form for rating the images.  Ideally I > would like the form to submit and then go to the next "slide" that > contains the image and the rating form. What I cannot seem to figure > out is how to hav

[jQuery] Re: jquery website broken?

2009-03-18 Thread Sam Sherlock
I have checked in ie6 box model issue with naviagtion and some really small text, but nothing really that bad. Will try to check it ie7 later. I did notice that the following url has a 500 error http://plugins.jquery.com/project/Plugins/name the other two links with it are fine. - S 2009/3/18

[jQuery] Re: Select class="class1 class2" using jQuery

2009-03-18 Thread Karl Rudd
Yes, it's standard CSS selector behaviour, so it's also standard jQuery behaviour. Karl Rudd On Thu, Mar 19, 2009 at 6:32 AM, bill123 wrote: > > I need to select an element like this: > >     > > and I've found that both of the following work: > >    $(".class_a").filter(".class_1").css("backgr

[jQuery] EZPZ Tooltip

2009-03-18 Thread mike
I just wanted to show off a tooltip plugin I made: http://theezpzway.com/2009/3/17/jquery-plugin-ezpz-tooltip. I know it's been done before, but mine takes a slightly different approach than most tooltip plugins out there. Any feedback is appreciated. Thanks! Mike

[jQuery] function - keeping content up on load of page

2009-03-18 Thread earth2...@yahoo.com
I am using a script to change content in a window. I need the html content in window to be up by default. With this script it's empty on page load, and it's only up when you click link. What do I need to add to this? $(document).ready(function() { $('#links a').click(function() { var url=$(this

[jQuery] Superfish

2009-03-18 Thread ag
Hi, I would the Superfish menu nav-bar style to highlight the current page and if current page is on second level then it should show that level and not cloase it. THANKS :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google G

[jQuery] superfish question

2009-03-18 Thread ReneMarxis
hi all i have 2 questions on superfish. How can i set the animate speed to very very fast ? :) I tried speed:'0' or speed:'fast' but none seems to have any inpact on the display speed of the menu. Delay however works great for fading out pretty fast (200 at them moment) I'd also like to know ho

[jQuery] jquery serialScroll

2009-03-18 Thread thinkfiver
I am currently using serialScroll (http://flesler.blogspot.com/2008/02/ jqueryserialscroll.html) on my site at http://zhiwancheung.com/sculpture.html (sculpture page) Currently I am trying to link the images on the "sculpture" page from a previous page (http://zhiwancheung.com/works.html or works

[jQuery] Re: Using jQuery to parse XML

2009-03-18 Thread mark.schulthe...@gmail.com
Post the portion of code where you DO call this since, as you say it seems to NOT have been called, or, try putting an alert just before that call as you do here...for the poor person's debug effort :) On Mar 18, 2:49 am, Matt wrote: > Hi all, > I've spent a long time trying to figure out why my

[jQuery] superfish

2009-03-18 Thread ReneMarxis
hi i have 2 problems with superfish. Hopefully someone of you can help me. I am using: - hoverIntent - superfish - supersubs - bgiframe Everything works ok except 2 things: 1) There is one white spacer (one px) on the left side of the menu. This spacer is also present if you take a look on the

[jQuery] Superfish doesn't degrade in IE6

2009-03-18 Thread sanna...@gmail.com
Hi, I tested your Superfish menu in FF 3 and IE6 for the PC. In FF it degrades fine, still showing the dropdowns on hover of their parent links, but in IE6, the menus don't show. I turned off the Javascript by going to Tools > Internet Options > Security > Custom Level, then under Scripting I dis

[jQuery] Re: Can a dialog not show an alert message?

2009-03-18 Thread arno.esterhuizen
Hi, delphilynx Could you post some example code, or point us to a working example? It's a lot easier than us trying to reinvent the code you already wrote. Cheers Arno On Mar 18, 3:38 pm, delphilynx wrote: > Anyone any comment about this issue? > > Thanks in advance!

[jQuery] Do you need authorization for SVN import???

2009-03-18 Thread J.V.
I am using Eclipse SVN subclipse plugin. I can browse all code on: http://jqueryjs.googlecode.com/svn but when I need to import it locally it asks me for credentials: I tried to leave it blank or use "guest", "" but it throws the error: - import -m "" D:/SANDBOX/zxy http:

[jQuery] insertAfter loses script tags

2009-03-18 Thread Bryan Larsen
Hello, If I clone some html that includes a script tag, the script gets clone. However, if I then do an insertAfter() with that clone, the script tag gets lost. Example (using jquery-1.3.2): ({option_a: 17}); Hello jQuery('#clone_me').clone(true).find('script')

[jQuery] Select class="class1 class2" using jQuery

2009-03-18 Thread bill123
I need to select an element like this: and I've found that both of the following work: $(".class_a").filter(".class_1").css("background-color", "red"); $(".class_a.class_1").css("background-color", "red"); The first one makes sense and is documented on the website. But the secon

[jQuery] How do I subtract 64 pixels from the value of a div's height?

2009-03-18 Thread Jeremy Coulson
Here is my code: $(document).ready(function () { var contentDivHeight = $('#contentDiv').css('height'); // pseudo-code: var calculatedHeight = $("#clickMe").click(function(){ $("#leftNavBox-contentPages").animate({"height": calculatedHeight}, "fast");

[jQuery] Sortable problems

2009-03-18 Thread err_ok
I am having some problems with the sortable plugin, most annoyingly in firefox instead of drag and drop functionality it seems to be click once then click again to drop.. but it doesn't seem to work at consistently, this problem isn't apparent in other demo's I have tried to I am assuming it is a

[jQuery] [Treeview] Persistent location with pages with a query string

2009-03-18 Thread FormMailer
Hi, I have several php pages in my menu and the menu works fine. The persistent location function works well, but some of these pages can have a query string (eg. http://mydomain.com/page.php?sortby=name). My problem is that Treeview doesn't recognize that the above is the same page as http://myd

[jQuery] jquery web site performance quite slow on Plugins screens

2009-03-18 Thread mark.schulthe...@gmail.com
I have been accessing the web site quite a bit the last few days, the performance seems QUITE slow, and I keep getting messages saying "A script on this page is causing Internet Explorer to run slowly. If it continues to run your computer may become unresponsive. Do you want to abort the script?

[jQuery] jQuery Cycle Form Submit and Next Issue

2009-03-18 Thread jenz
I am trying to get the jQuery Cycle plugin to cycle through "slides" that contain images with a form for rating the images. Ideally I would like the form to submit and then go to the next "slide" that contains the image and the rating form. What I cannot seem to figure out is how to have it cycle

[jQuery] namespaces XML parsing

2009-03-18 Thread david.garc...@barcelonamedia.org
I have had alook into jQuery mailinglist and I have googled and I have seen that there are problems witj jQuery parsing XML (an CSS I've seen) namespaces. I have tried and for example, in FF I need to look for "ns\\:tag" to find a tag, but for example if a look for an attribute I have to do this

[jQuery] Re: jquery website broken?

2009-03-18 Thread Paul Woolcock
Works for me too, Vista Ultimate + IE7. On Wed, Mar 18, 2009 at 9:21 AM, MorningZ wrote: > > What do you see as broken? > > the page looks and operates fine for me in IE7 (Windows Server 2008 > and IE7) > > On Mar 18, 9:11 am, "iain.wa...@googlemail.com" > wrote: > > Hi, > > > > I really want

[jQuery] Problems whith the variables for a click function

2009-03-18 Thread Patrik
Hi! I try to make a script to change the prize between with tax and without but I cant get it to work whats wrong? var sant = 'no'; var pris = $('#productPrices').html(); $('#tax a').click(function(){ if(sant == 'no'){ var pris2 = pris.replace(/[^0-9.,]+/g, '').replace(/[,]+/g, '.')

[jQuery] Re: jquery website broken?

2009-03-18 Thread David Meiser
When I was developing our company's website, I had a coworker who kept complaining about how "terrible" it looked. He complained that half the images were missing, half the text was unstyled, blah blah blah. I asked him what browser he was using: Firefox 3.0.1. I was using 3.0.1 as my primary br

[jQuery] border-radius plugin for IE

2009-03-18 Thread weepy
This plugin adds support to IE for -moz-border-radius using VML http://gist.github.com/77516 weepy

[jQuery] Re: jquery website broken?

2009-03-18 Thread Rick Faircloth
Well, it does look fine now.(just a couple of very minor issues, relatively speaking). Has someone done some tweaking lately? I haven't look at the site in maybe a week or two, and I may not have even noticed it was displaying correctly. Even with it having problems, I could get two what I n

[jQuery] Re: Button Actions

2009-03-18 Thread brian
The function you pass to ajaxSubmit() is run when the AJAX call returns. So, it's well after the user hits the submit button. You should instead pass an options object with the following: beforeSubmit: your block UI handler success: your success handler On Wed, Mar 18, 2009 at 5:05 PM, MonkeyBa

[jQuery] Re: jquery website broken?

2009-03-18 Thread Mauricio (Maujor) Samy Silva
>...if it's only broken for some IE 7 users and not for others. And I am one of the "others users", since the site looks perfectly fine on my Brazilian-Portuguese version of IE7. Maurício -Mensagem Original- De: Karl Swedberg Para: jquery-en@googlegroups.com Enviada em: quarta

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-18 Thread Tin
Updated the last example (http://slickgrid.googlecode.com/svn/trunk/ example4-model.html) with column sorting (click on column headers). Some grid code refactoring plus multiple bug fixes and performance enhancements (try the slider!).

[jQuery] Re: proper syntax for a local path ../myDirectory/myFile.htm

2009-03-18 Thread rolfsf
Thanks Nikola. Unfortunately, this prototype will be opened on various people's computers, so I can't anticipate what the directory setup will be on their machine (both mac and pc), hence my use of a path relative to my document ../myDirectory/ On Mar 18, 2:02 pm, Nikola wrote: > I do this al

[jQuery] Re: Button Actions

2009-03-18 Thread MonkeyBall2010
Thanks... I have read some of the jQuery documentation but it does little to describe the underlying language. I will check out the book you mentioned this weekend. Also, I have one more minor problem with with the above code. So the callback function is working correctly with the exception of my

[jQuery] Re: proper syntax for a local path ../myDirectory/myFile.htm

2009-03-18 Thread Nikola
I do this all the time... file:///c:/myDirectory/myFile.htm #myDiv On Mar 18, 3:32 pm, rolfsf wrote: > I need to make a simple 'freestanding' prototype to be run locally. I > used a simple load() to grab a div from another file: > > $('#ajax-panel').load("../myDirectory/myFile.htm #myDiv"); > >

[jQuery] Re: jquery website broken?

2009-03-18 Thread Karl Swedberg
Again, there's not a whole lot we can do if we can't replicate the problem. Here is what the page looks like in IE 7 for me: http://skitch.com/kswedberg/be1wy/ie-7 See? Looks perfectly fine. It shouldn't be surprising to see the page "so badly broken" if it's only broken for some IE 7 users

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery & Raxan PDI

2009-03-18 Thread Nikola
Very interesting! On Mar 18, 2:14 pm, xwisdom wrote: > Hi Jack, > > Yes, Raxan is still in alpha stages right now but we're anticipating a > beta and then a final release very soon. > > donb, > > The grid system used by Raxan is based on BluePrintCSS which include a > lot more than layouts but i

[jQuery] Re: Find and replace image problem

2009-03-18 Thread James
Okay, how about something like: reg = new RegExp('/'+imagename+'$/', 'gi'); new_src = $(this).attr("src").replace(reg, fileObj.name); On Mar 18, 10:00 am, Chris K wrote: > As I said that doesn't work. > > On Mar 18, 11:48 am, James wrote: > > > var new_src = $(this).attr("src").replace(imagen

[jQuery] Re: jquery website broken?

2009-03-18 Thread Rick Faircloth
Yes, I have to say that's it's been very surprising that the site would be so badly broken in IE 7 since it was put up. I figured someone would get around to fixing the css...assuming that's what the problem is. The site looks great when it's right, but really bad when it starts flying apart. Ca

[jQuery] Re: Find and replace image problem

2009-03-18 Thread Chris K
As I said that doesn't work. On Mar 18, 11:48 am, James wrote: > var new_src = $(this).attr("src").replace(imagename, fileObj.name); > > will store the String value of that into new_src, so you just set your > image source to it. > > $(this).attr("src", new_src); > > On Mar 18, 7:56 am, Chris K

[jQuery] proper syntax for a local path ../myDirectory/myFile.htm

2009-03-18 Thread rolfsf
I need to make a simple 'freestanding' prototype to be run locally. I used a simple load() to grab a div from another file: $('#ajax-panel').load("../myDirectory/myFile.htm #myDiv"); but the ../ in the url chokes. How can I accomplish that for a prototype that runs locally on my machine without

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread shapper
Hi, that is what I am trying to do but by using that plugin I can: 1. Have different CSS classes applied to collapsed and expanded fieldsets so I can get a toogle icons; 2. Control the speed of collapse (this is not very important) The problem is that the plugin, as far as I can see, gets all t

[jQuery] Re: show hide random rows

2009-03-18 Thread Scott Sauyet
Sean O wrote: Nice job. I like the logic, and the fading out of unselected rows. My solution was, admittedly, a quick one. It certainly wouldn't scale past 1,000 rows or so -- especially with the majority # selected -- but if the 10/50 number is firm, seemed to work OK. Yours is probably more

[jQuery] Re: Star rating plugin problems

2009-03-18 Thread Philip Garrett
I can confirm that this has solved my problem. Thanks, Diego! - Philip On Mar 18, 1:27 pm, "Diego A." wrote: > This issue has been resolved. Please download the latest version of > the plugin: > This is an old issue which has been resolved. Please download the > latest version of the plugin:ht

[jQuery] Re: jquery website broken?

2009-03-18 Thread Cam Spiers
How does it have anything to do with "the package" they are using? Would be nice to see the site at least using valid markup and css. On Thu, Mar 19, 2009 at 5:22 AM, donb wrote: > > It's always had that problem since the new site was created. There > are floats not being cleared someplace in

[jQuery] Re: Find and replace image problem

2009-03-18 Thread James
var new_src = $(this).attr("src").replace(imagename, fileObj.name); will store the String value of that into new_src, so you just set your image source to it. $(this).attr("src", new_src); On Mar 18, 7:56 am, Chris K wrote: > I have the image name in a variable and want to replace it but not >

[jQuery] Help about how to use the jquery.kiketable.colsizable

2009-03-18 Thread ManKuZo
Hello, I'm trying to create a very simple exemple with the the jquery.kiketable.colsizable pluging. But, It's not working, can you help me with this. The part of the code is bellow : IN THE HEADER $(document).ready(function(){ $("table").kiketable_colsizable() }); IN THE BOD

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread AnatolyG
I don't have context for what you're trying to do, but if you want to hide the first OL that's displayed, then: fieldset.find("ol:eq(0)") finds it to hide it. but, if you just want this to be collapsable, and when clicking on the legend, uncollapse, wouldn't this be much easier? $('fields

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery & Raxan PDI

2009-03-18 Thread xwisdom
Hi Jack, Yes, Raxan is still in alpha stages right now but we're anticipating a beta and then a final release very soon. donb, The grid system used by Raxan is based on BluePrintCSS which include a lot more than layouts but it also possible to intergrate Raxan with the 960 grid system. All you

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery & Raxan PDI

2009-03-18 Thread donb
Incidentally, being '100% faster' is a bit optimistic if you think about it. ;-) But Shaving 10 hrs off a 10 hr task would give me a lot more free time for other things. On Mar 18, 1:55 pm, donb wrote: > The 960 Grid System seems a much cleaner gridding technique, although > I only recently stu

[jQuery] Find and replace image problem

2009-03-18 Thread Chris K
I have the image name in a variable and want to replace it but not sure how to do this. Currently I can replace the image src with: var new_src = $(this).attr("src").replace(/ship.png$/i, fileObj.name); I want to do something like this (which doesn't work): var new_src = $(this).attr("src").repl

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery & Raxan PDI

2009-03-18 Thread donb
The 960 Grid System seems a much cleaner gridding technique, although I only recently stumbled across it and haven't used it yet. http://960.gs/ On Mar 18, 1:31 pm, Jack Killpatrick wrote: > Looks very interesting! The site says it's in alpha... is that still > correct? > > Thanks, > Jack > >

[jQuery] Re: show hide random rows

2009-03-18 Thread Sean O
Scott, Nice job. I like the logic, and the fading out of unselected rows. My solution was, admittedly, a quick one. It certainly wouldn't scale past 1,000 rows or so -- especially with the majority # selected -- but if the 10/50 number is firm, seemed to work OK. --SEAN O Scott Sauyet-3 w

[jQuery] Re: Can't seem to figure out what is wrong.

2009-03-18 Thread RonnBlack
Wow! It is not clear at in the documentation that it keys off the name attribute and not the id attribute. To be fair, it does say it. I just wasn't what I expected and was reading the word name as a synonym for id. Thanks a ton, that clears my confusion. On Mar 17, 8:07 pm, MorningZ wrote: >

[jQuery] Drop-down menu / PHP mark-up

2009-03-18 Thread lukas
Hello! I have a list of messages which I want to sort with the help of a jquery drop-down menu. It is a template file with an underlying PHP/MySQL application. All what I would like to do is to change a variable value and refresh (or not refresh?) the same page when someone uses the drop-down men

[jQuery] :visible change

2009-03-18 Thread s.ross
I'm stumped on a 1.3.2 change. Here is the scenario: // Node tree: // - div.groupItem // - div.itemHeader // - a.closeEl // - div.itemContent // - All the enclosed html // // When the closeEl node is clicked, act on its parent .groupItem's // corre

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery & Raxan PDI

2009-03-18 Thread Jack Killpatrick
Looks very interesting! The site says it's in alpha... is that still correct? Thanks, Jack xwisdom wrote: Hello Everyone, I've created a PHP framework that integrates well with the jQuery library. The framework is called Raxan Framework which includes a Programmable Document Interface (PDI

[jQuery] Re: Ajax - Reload only affected record

2009-03-18 Thread Thiago Vian
On Wed, Mar 18, 2009 at 10:46 AM, Thiago Vian wrote: > Ok. Thats is my code: > / > READ > // > > > $(document).ready(function(){ > var $send= $("#send"); > var $loading = $("#loading"); > var $content = $("#content"); > function readRecords

[jQuery] Re: Star rating plugin problems

2009-03-18 Thread Diego A.
This issue has been resolved. Please download the latest version of the plugin: This is an old issue which has been resolved. Please download the latest version of the plugin: http://www.fyneworks.com/jquery/star-rating/ On Jan 29, 6:44 pm, "matthias.otto...@googlemail.com" wrote: > Hi Philip, >

[jQuery] Re: namespaces XML parsing

2009-03-18 Thread Michael Lawson
We were running into a similar problem with an AJAX application and here is what we did to get around namespaces: jQuery(entries).find("[...@nodename=namespace:elementName]"); cheers Michael Lawson Content Tools Developer, Global Solutions, ibm.com Phone: 1-828-355-5544 E-mail: mjlaw...@us.ib

[jQuery] Re: namespaces XML parsing

2009-03-18 Thread Martijn Houtman
On Mar 18, 2009, at 5:52 PM, David wrote: For example, in FF, if a look for a tag, I have to write "ns\\:tag" , but if a look for an attribute I have to write "ns:attribute". In google Chrome (WebKit), I have to write "tag" or "attribute" and it works. Has this problem been solved, or is there

[jQuery] namespaces XML parsing

2009-03-18 Thread David
I have had a look at jQuery mailinglist and I have googled, and I have not found a solution to this problem. For example, in FF, if a look for a tag, I have to write "ns\\:tag" , but if a look for an attribute I have to write "ns:attribute". In google Chrome (WebKit), I have to write "tag" or "at

[jQuery] Develop Ajax apps 100% faster - thanks to jQuery & Raxan PDI

2009-03-18 Thread xwisdom
Hello Everyone, I've created a PHP framework that integrates well with the jQuery library. The framework is called Raxan Framework which includes a Programmable Document Interface (PDI) extension. PDI is an Open Source PHP application framework that's design to take advantage of modern web appli

[jQuery] Re: where to load init function with google?

2009-03-18 Thread mkmanning
There's actually good reasons why scripts *shouldn't* go in the header: http://developer.yahoo.com/performance/rules.html#js_bottom Current best practice is to follow unobtrusive DOM scripting, using progressive enhancement. This means separating your scripting into a behavioural layer, just as

[jQuery] Re: jquery website broken?

2009-03-18 Thread donb
It's always had that problem since the new site was created. There are floats not being cleared someplace in there. For what it's worth it's not a reflection on jQuery, but on the package being used to run the site (Wordpress, perhaps?). On Mar 18, 11:26 am, Karl Swedberg wrote: > very odd. I

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread shapper
Sorry, I don't understand what your mean. Please, check the code I am using in: http://www.27lamps.com/Beta/Collapse/JQuery.Collapsible-1.0.js The change I am trying to do is in the following lines: var legend = fieldset.find(':first'); var body = jQuery(document.createElement('div')); /

[jQuery] Re: where to load init function with google?

2009-03-18 Thread MorningZ
There's no reason why script can't go in the header.. Related to your original question, do you feel anything is gained by using google.load("jquery", "1.3.1"); over http://ajax.googleapis.com/ajax/ libs/jquery/1.3.2/jquery.js"> seems like the second version is one less thing t

[jQuery] jquery validation on one field or another

2009-03-18 Thread paulswansea
Hi, I have a form with multiple fields, including one for a telephone number and one for an email address, i need the contact to enter in at least one of the above in the form to make it valid, how do i do an either/or check within a jquery validation form?

[jQuery] Re: jquery website broken?

2009-03-18 Thread Karl Swedberg
very odd. I remember one other person having a problem with the site a while back. I think he was using a Polish version of IE7, but when he switched it or updated it or something, it started rendering just fine. Sorry, my memory is a little fuzzy on that. I wish there were something I coul

[jQuery] Re: embedded elements and document.ready

2009-03-18 Thread Martijn Houtman
On Mar 18, 2009, at 4:11 PM, redcom wrote: How can i execute a function after the embed element was loaded or the document is fully workable? What I usually do with Flash applets is have them do a call to JavaScript whenever they are ready, and let JS handle the rest. I am not sure, but I

[jQuery] Re: draggable/droppable pick some

2009-03-18 Thread Richard D. Worth
This should get you started: http://jsbin.com/ixeca - Richard On Wed, Mar 18, 2009 at 7:38 AM, CTek wrote: > > I'm having a headache because I'm trying to make an on-line test. > The graphics department wanted to make it all flash, but I said jQuery > would do the trick, so please help me prov

[jQuery] embedded elements and document.ready

2009-03-18 Thread redcom
Hello I have a question: Is there a way to know if a custom plugin is ready to work with? I have a inhouse build of a video player , don't have the load event or any other type of event. i use in html: and in a .js file i added $(document).ready( functions); this functions contain some lo

[jQuery] Re: $('.edlBoxArea').corners is not a function

2009-03-18 Thread boy_named_Goo
Problem solved. It turns out that the jquery.js file was being referenced more than once overall (in a pretty large collection of inter-related dynamic pages). In one dynamic page there was this: Then in another one there was this: After I re-organized so that jquery.js was referenced onl

[jQuery] Re: show hide random rows

2009-03-18 Thread Scott Sauyet
Bob O wrote: Basically i have a YUI datatable and i want to use jQuery to hide all but a user generated number of rows that are random selected Something like this might be what you're looking for: http://jsbin.com/ozafa/edit The important part is this: var $rows = $("#myTable tbody

[jQuery] Re: Cycle Plugin Pager with Images

2009-03-18 Thread jethom2
Thanks for the help. I am having another problem though. I'm trying to run a script to do a fadeIn on the images that are cycling in, but I can't get it to restart by cycling with the pager. It will start if it cycles by timing of if you wait long enough then use the pager. I've tried various

  1   2   >