[jQuery] Re: highlight errors

2009-03-23 Thread jQuery Lover
Are you using your own validation code or validation plugin ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Mon, Mar 23, 2009 at 10:30 AM, anush anushshe...@gmail.com wrote: Is it possible to highlight all the text boxes in a from even if there is an error in just

[jQuery] Re: jquery and netbeans 6.5

2009-03-23 Thread jQuery Lover
I don't use it as an IDE, but I remember updating my jQuery version. You need to create a new zip file similar to the one found here: C:\Program Files\NetBeans 6.5\webcommon1\modules\ext\javascript Copy paste jquery-1.2.6.zip to something lik jquery-1.3.2.zip and don't forget to change the

[jQuery] Re: Beginner Question

2009-03-23 Thread jQuery Lover
Which treeView plugin are you using? http://jquery.bassistance.de/treeview/demo http://be.twixt.us/jquery/treeView.php The second one collapses and expands when you click on [-]/[+] links only... probably what you want... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com

[jQuery] Re: jquery_ajax + servlet problem

2009-03-23 Thread jQuery Lover
You are mapping your AddComment request to be /servlets/AddComment but making AJAX request to AddComment. Probably changing $.post to this will help: $.post(/servlets/AddComment, function(data){ Unless the current page is also in /servlets. PS. You might find $.getJSON() method useful

[jQuery] Re: How to prevent loading jquery twice

2009-03-23 Thread jQuery Lover
Why not include jQuery in your head and don't worry about it being already loaded or not in your components. Then remove jquery loading in all of your components... This will make sure your components concentrate on their main business logic ... Read jQuery HowTo Resource -

[jQuery] Re: minification

2009-03-23 Thread jQuery Lover
Using latest YUI and default configuration I got 53.7KB Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sun, Mar 22, 2009 at 11:40 PM, dereck009 galambal...@gmail.com wrote: How the jquery code was minified? I mean it's about 56 kB, while yui compressor gives a 72

[jQuery] Re: Rotating CSS classes each 5 sec

2009-03-20 Thread jQuery Lover
The code is not perfect: var imgArray = [ img1 , img2, img3]; function swap(i){ if(imgArray.length i){ $('.' + imgArray[i]).removeClass(imgArray[i]).addClass(imgArray[i+1]); }else{ return; } setTimeout(swap(+(i+1)+), 5000); } // Call the function swap(0);

[jQuery] Re: problems with dynamic click event... how do I get the index in there ?

2009-03-20 Thread jQuery Lover
Why don't you use this syntax so .each() would pass the current index for you... $( calculationsArray ).each(function( INDEX ){ Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Mar 20, 2009 at 5:29 PM, hybris77 dist...@yahoo.com wrote: hi folks, if anyone could

[jQuery] Re: What does this do?

2009-03-20 Thread jQuery Lover
Gets you the first visible .upsell_feature_module's ID (in id=upcell container). Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Mar 20, 2009 at 5:01 PM, Danjojo dlcac...@gmail.com wrote: Sorry not a quiz... I just am having trouble remembering how I built

[jQuery] Re: xml parsing

2009-03-11 Thread jQuery Lover
1. You could create a variables with higher scope or pass in as additional arguments to your callback function. Use arguments to get your variables. 2. Did you try to specify the return type as well in your $.get() function? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com

[jQuery] Re: Very simple question...

2009-03-11 Thread jQuery Lover
That is exactly what it stands for :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Mar 12, 2009 at 9:09 AM, Josh Powell seas...@gmail.com wrote: @7times9 I'm not sure what eq() stands for, come to think of it, but I always read it in my heads as 'equals'

[jQuery] Re: jQuery.com homepage News from the jQuery Blog not up to date?!

2009-03-11 Thread jQuery Lover
Mine is up to date... the latest news is about jquery ui 1.7 release... Anyone with similar problems ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Mar 12, 2009 at 2:56 AM, MarcusT marcu...@gmail.com wrote: The jQuery.com homepage's currently shows

[jQuery] Re: Cluetip Issue

2009-03-11 Thread jQuery Lover
Well, if you don't have any other events bound to your element, then simply unbind the event. For example, if it is on hover, unbind on hover. if it is on click unbind click event... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Mar 12, 2009 at 4:14 AM, Pedram

[jQuery] Re: jQuery.com homepage News from the jQuery Blog not up to date?!

2009-03-11 Thread jQuery Lover
I remember a post regarding moving jquery to some hosting that has many synchronized servers all over the world (US, Europe, Asia...). I guess they are not getting synched or something... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Mar 12, 2009 at 9:28 AM,

[jQuery] Re: jquery

2009-03-11 Thread jQuery Lover
You can do it yourself. Go to your membership settings... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Mar 12, 2009 at 1:26 AM, Pavel Philippenko pavel...@gmail.com wrote: Can You please remove me from jquery newsletter

[jQuery] Re: Recommend tree widget toolkit

2009-03-11 Thread jQuery Lover
I have not tested nor worked with lots of tree widgets, but treeView is a lightweight and robust plugin... http://be.twixt.us/jquery/treeView.php Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Mar 11, 2009 at 11:57 PM, Tim Johnson t...@johnsons-web.com wrote:

[jQuery] Re: html data in IE

2009-03-03 Thread jQuery Lover
.html() should not cause any errors. I remember having similar problem with .append(). I had to use a temporary variable to append new html. Anyone experienced similar problems ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Mar 4, 2009 at 9:15 AM, pedalpete

[jQuery] Re: Images in Superfish Menus

2009-03-03 Thread jQuery Lover
;        background-color: #BDD2FF;        background-image: url(images/brb.png);        background-repeat: repeat-x;        background-position: 0 0; } On Feb 24, 8:54 am, jQuery Lover ilovejqu...@gmail.com wrote: Did you try to mess around with superfish css files ? Read jQuery HowTo

[jQuery] Re: new Whitehouse.gov uses jQuery 1.2.9

2009-03-03 Thread jQuery Lover
It's OK Brad, It was discussed here previously and probably the whole internet knows by now :))) PS. And you probably meant 1.2.6 Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Mar 4, 2009 at 12:39 AM, Brad McMahon bradmcma...@gmail.com wrote: just wanted to

[jQuery] Re: Ajax loading of HTML

2009-03-03 Thread jQuery Lover
Have you uploaded your includes directory and usa.html files? Also, your html markup is not valid. Maybe it's causing the problem, who knows... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Mar 3, 2009 at 7:52 PM, davidnext da...@nextinteractives.com wrote:

[jQuery] Re: ajax request on local machine and FF3/Firebug Access to restricted URI denied code: 1012

2009-02-27 Thread jQuery Lover
You can read more about the Access to restricted URI denied code: 1012 error here: http://jquery-howto.blogspot.com/2008/12/access-to-restricted-uri-denied-code.html On Sat, Jan 17, 2009 at 5:31 AM, jquertil til...@gmail.com wrote: except its not a bug - its a feature request... On Jan 16,

[jQuery] Re: Calling method on multiple jQuery objects

2009-02-25 Thread jQuery Lover
Oops, sorry. The snippet that I wrote selects all elements whitin your myJQObj, which is not much of any use... My bad... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 6:01 PM, jQuery Lover ilovejqu...@gmail.com wrote: You could try

[jQuery] Re: Json help adding into Object

2009-02-24 Thread jQuery Lover
As far as I can see you are overwriting your abbrs object. You must be getting the last value. You may find jQuery.extend utility usefull: http://docs.jquery.com/Utilities/jQuery.extend Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Mon, Feb 23, 2009 at 7:45 PM,

[jQuery] Re: Calling method on multiple jQuery objects

2009-02-24 Thread jQuery Lover
You could try: $('*', myJQObj).hide(); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 4:51 PM, Bisbo michael.waterf...@googlemail.com wrote: Hi there, I can't seem to find a way to perform the same jQuery method on multiple jQuery

[jQuery] Re: Json help adding into Object

2009-02-24 Thread jQuery Lover
I recommend using arrays as well :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 5:58 PM, Mike Alsup mal...@gmail.com wrote: $.each(data.abbr_data, function(i,get_abbr_data) {

[jQuery] Re: Changing colour of table rows

2009-02-24 Thread jQuery Lover
Is there a way to count the rows of a specfic table class=resultslist or even better the TR elements of the tbody of #resultslist? And how do I know on what row I am currently are when a checkbox was clicked? Use this code to find out how many table rows are there in the table:

[jQuery] Re: Is it possible to override a link?

2009-02-24 Thread jQuery Lover
Yes it is... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 6:06 PM, david.0pl...@gmail.com david.0pl...@gmail.com wrote: Thank you very much, i never tought it would turn out so simple! Is it also possible to do this with an onclick? On 23

[jQuery] Re: Changing colour of table rows

2009-02-24 Thread jQuery Lover
, but it returns only 0...? On 24 Feb., 14:07, jQuery Lover ilovejqu...@gmail.com wrote: Is there a way to count the rows of a specfic table class=resultslist or even better the TR elements of the tbody of #resultslist? And how do I know on what row I am currently are when a checkbox

[jQuery] Re: Trying to copy img src attr to another img

2009-02-24 Thread jQuery Lover
You have extra ); in your second anonymous function. This code worked for me: $(document).ready(function() { var source2 = $(div.listingimagetwo img).attr(src); var source1 = $(div.listingimageone img).attr(src); $(.listingimagetwo).hover( function () {

[jQuery] Re: adding more pictures to existing script

2009-02-24 Thread jQuery Lover
It seems there is an animation (of 3 hero images) on your homepage and also there is an image slide. Some jquery plugin according to this code: $(.slideulli).css(display,block); $.getScript(assets/js/mousewheel.plugin.js); $.getScript(assets/js/ufslide.plugin.js,

[jQuery] Re: load() not loading my dynamic page

2009-02-24 Thread jQuery Lover
ryan.det...@gmail.com wrote: It appears that things work fine in IE, just not Firefox. Very strange. On Feb 5, 6:56 am, jQuery Lover ilovejqu...@gmail.com wrote: Maybe it's related to wrong content type being sent by your server !!! Read jQuery HowTo Resource - http

[jQuery] Re: Help with Jcarousel msg.

2009-02-24 Thread jQuery Lover
There isn't anything (any file) that you should change on your local system. Just use some other browser ! Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 3:41 PM, vashyboy111 e_casa...@hotmail.com wrote: Hi, I have a message pop-up on AOL web

[jQuery] Re: $('#foo p') or $('p', $('#foo'))

2009-02-24 Thread jQuery Lover
Liam, you can use $(p, #foo). The second parameter must be a jQuery object or dom element... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 6:44 PM, Liam Potter radioactiv...@gmail.com wrote: Hi Stehpan :p I understand that, I'm just not sure

[jQuery] Re: Using livequery

2009-02-24 Thread jQuery Lover
And also you have this loaded with your ajax content: div id=contentarea style=height: 390px; display: block; border-right-color: rgb(255, 255, 255); color: rgb(0, 0, 0); meta content=text/html; charset=utf-8 http-equiv=Content-Type/ titleUntitled Document/title h1Testing/h1 the meta and title

[jQuery] Re: $('#foo p') or $('p', $('#foo'))

2009-02-24 Thread jQuery Lover
inside of #foo, why does it treat it like $(#foo p)? jQuery Lover wrote: Liam, you can use $(p, #foo). The second parameter must be a jQuery object or dom element... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 6:44 PM, Liam Potter

[jQuery] Re: Images in Superfish Menus

2009-02-24 Thread jQuery Lover
Did you try to mess around with superfish css files ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 12:54 PM, alsag...@gmail.com alsag...@gmail.com wrote: I am new to Joomla but have a decent understanding of CSS. I am trying to figure out

[jQuery] Re: Need help with checking checkboxes

2009-02-24 Thread jQuery Lover
Put your checkboxes inside some container to distinguish them from check all checkbox. Secondly, amend your ajax post function so it takes a set of id's. The rest is pretty clear... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 3:47 PM, heohni

[jQuery] Re: $('#foo p') or $('p', $('#foo'))

2009-02-24 Thread jQuery Lover
radioactiv...@gmail.com wrote: lol, but I'm interested in what jquery does with what I tell it. jQuery Lover wrote: That is how it works Liam !!! jQuery does not knows, it's told so... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 6:49 PM

[jQuery] Re: Plugin hosting?

2009-02-24 Thread jQuery Lover
I don't think there is. Unless leaching them from author's site (in case they haven't zipped them). Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 7:03 PM, Oskar Rough oskarmosumga...@gmail.com wrote: Hi, I'm really glad it's possible to use

[jQuery] Re: Need a help to manipulate table that multiple rowspan

2009-02-24 Thread jQuery Lover
To get the first row's row span: $('tr:first td').attr('rowspan') To set it to the last row's td: $('tr:last td').attr('rowspan', $('tr:first td').attr('rowspan')); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 2:53 PM, Peter

[jQuery] Re: Need a help to manipulate table that multiple rowspan

2009-02-24 Thread jQuery Lover
Oops, sorry you have two td's in your first row... $('tr:last td').attr('rowspan', $('tr:first td:first').attr('rowspan')); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 7:15 PM, jQuery Lover ilovejqu...@gmail.com wrote: To get the first row's

[jQuery] Re: Finding the last sibling.

2009-02-11 Thread jQuery Lover
If you want selector without using $(this) there is another way: $(input ~ *:last); PS. I also like mkmanning's aproach... Read jQuery HowTo Resource http://jquery-howto.blogspot.com On Thu, Feb 12, 2009 at 11:19 AM, mkmanning michaell...@gmail.com wrote: Somehow the selector

[jQuery] Re: A small incompatibility about selector on Jquery 1.3.1

2009-02-11 Thread jQuery Lover
Recently there was a similar issue in version 1.3 (not 1.3.1) where selector with empty attribute value did not work correctly... I think it's been fixed in 1.3.1 --- Read jQuery Howto http://jquery-howto.blogspot.com On Thu, Feb 12, 2009 at 11:07 AM, Ricardo Tomasi ricardob...@gmail.com

[jQuery] Re: Jquery Treeview bug in Tapestry5

2009-02-11 Thread jQuery Lover
Try to put the code in an anonymous function like so: (function($){ // the code of treeview })(jQuery); More about this method and its purpose you can read - here http://jquery-howto.blogspot.com/2008/12/what-heck-is-function-jquery.html On Thu, Feb 12, 2009 at 12:06 PM, pilgrim

[jQuery] Re: Optimize large DOM inserts

2009-02-09 Thread jQuery Lover
I made a post named 5 easy tips on how to improve code performance with huge data sets in jQuery here: http://jquery-howto.blogspot.com/2009/02/5-easy-tips-on-how-to-improve-code.html It gives 5 tips on howto work and improve performance while working with huge datasets. I hope you'll find it

[jQuery] Re: live works in IE6?

2009-02-09 Thread jQuery Lover
That is also true :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sun, Feb 8, 2009 at 1:15 AM, Dave Methvin dave.meth...@gmail.com wrote: File a ticket:http://dev.jquery.com Before doing that, post a sample here. A lot of bugs are not bugs.

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-09 Thread jQuery Lover
', .. } ); Best regards, Konstantin Mirin mailto:konstantin.mi...@gmail.com mailto:i...@konstantin.takeforce.net -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of jQuery Lover Sent: Saturday, February 07, 2009 9:14 AM

[jQuery] Re: I can't get Shadowbox to fire!

2009-02-09 Thread jQuery Lover
, 11:59 am, jQuery Lover ilovejqu...@gmail.com wrote: Still getting the language error. Bruce, why don't you use some lighter lightbox plugins ??? http://www.google.com/search?q=jquery+lightbox+plugin Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009

[jQuery] Re: traversing ajax response with .find in Safari/Chrome

2009-02-09 Thread jQuery Lover
, jQuery Lover ilovejqu...@gmail.com wrote: var newItem=$(div#item, response).html(); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 9:02 AM, pedalpete p...@hearwhere.com wrote: I'm trying to get a div from an html ajax response. my code

[jQuery] Re: HELP, how to catch these elements ?

2009-02-09 Thread jQuery Lover
Ayan, I would recomment using ID selection. Since it is much faster than other method selections. You can see performance test results here: http://jquery-howto.blogspot.com/2009/01/improving-jquery-code-performance.html But in your case, it seems like you have a lot of elements to select and

[jQuery] Re: How to enable jquery in a loaded page?

2009-02-09 Thread jQuery Lover
Could you give a link to your test page ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 6:36 PM, Konstantin Mirin konstantin.mi...@gmail.com wrote: Well, you have a space in your link. Maybe that's a problem. Should be: a

[jQuery] Re: Need to make a edit layout system using php and jquery...?

2009-02-09 Thread jQuery Lover
trouble using php with css. I made a php file with the header content text/css and the css works kinda.. the render is not proper. the htmlcheck button is supposed to display at the footer and it is being displayed in the top left corner of the screen. On Feb 6, 3:15 am, jQuery Lover ilovejqu

[jQuery] Re: treeview custom icon

2009-02-09 Thread jQuery Lover
Which treeview plugin are you using ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 9:50 PM, Anders Viklund viklund_and...@hotmail.com wrote: This works fine for replacing the file image, but how can I replace the collapsable and expandable

[jQuery] Re: jQuery query string implementation

2009-02-09 Thread jQuery Lover
the querystring into an object. On Feb 5, 6:53 am, jQuery Lover ilovejqu...@gmail.com wrote: Agree, that would be something useful... but it's better to have it as a plugin, since you don't need it for the most of the time... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-07 Thread jQuery Lover
Maybe because you are return reference to the function not a jQuery object: return this; Read this post: http://jquery-howto.blogspot.com/2008/12/how-to-create-jquery-plugin-extending.html It explains why you need to return jQuery object. On Sat, Feb 7, 2009 at 1:28 PM, ShurikAg

[jQuery] Re: Text to the left of the jQuery Star Rating Plugin

2009-02-07 Thread jQuery Lover
Surround your text (Rating:) with div and give a float:right CSS... worked for me on plugins demo page... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 12:54 AM, Tom seil...@gmail.com wrote: Hi, I'm using the star rating plugin at:

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-07 Thread jQuery Lover
, Feb 7, 2009 at 2:02 PM, ShurikAg shuri...@gmail.com wrote: But it does not even get to the return statement... On Feb 7, 12:47 am, jQuery Lover ilovejqu...@gmail.com wrote: Maybe because you are return reference to the function not a jQuery object: return this; Read this post:http

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-07 Thread jQuery Lover
...@gmail.com wrote: Sorry, I have probably didn't enplane myself properly. I'm running it once, but when I'm trying to track jQ (this).selector (by alert), it alerts me twice in the same run: once with table and second is empty... On Feb 7, 1:11 am, jQuery Lover ilovejqu...@gmail.com wrote: But you

[jQuery] Re: thickbox 3.1 and new jquery 1.3.1 - please help

2009-02-07 Thread jQuery Lover
Try to delete @ on line 79. 79: TB_TempArray = $(a...@rel=+imageGroup+]).get(); 79: TB_TempArray = $(a[rel=+imageGroup+]).get(); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 3:43 AM, newbie alanv...@gmail.com wrote: I upgraded from jquery

[jQuery] Re: Datepicker UI Opening at Random / Unexpected Locations

2009-02-07 Thread jQuery Lover
Yeap, a test page would help to find the bug... One more question. Are you positioning your elements in CSS using relative/absolute ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 8:38 AM, Ca-Phun Ung cap...@yelotofu.com wrote: Hi, Which

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-07 Thread jQuery Lover
But these lines should not cause 2 alerts... I just run you code and i'm getting just one alert box ?! Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 2:45 PM, ShurikAg shuri...@gmail.com wrote: I figured out that the problem starts here:

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-07 Thread jQuery Lover
FF3 Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 2:53 PM, ShurikAg shuri...@gmail.com wrote: hm which browser you are working with? On Feb 7, 1:49 am, jQuery Lover ilovejqu...@gmail.com wrote: But these lines should not cause 2 alerts

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-07 Thread jQuery Lover
element!? On Feb 7, 1:53 am, jQuery Lover ilovejqu...@gmail.com wrote: FF3 Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 2:53 PM, ShurikAg shuri...@gmail.com wrote: hm which browser you are working with? On Feb 7, 1:49 am, jQuery

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-07 Thread jQuery Lover
, Feb 7, 2009 at 3:08 PM, ShurikAg shuri...@gmail.com wrote: instead of $.log() just put alert(); you will see the error. My html is something like this: ... table class=.tbl/table ... and I'm using it as: var $table = $('.tbl'); $table.table(); On Feb 7, 2:04 am, jQuery Lover ilovejqu

[jQuery] Re: I can't get Shadowbox to fire!

2009-02-07 Thread jQuery Lover
I'm getting No Shadowbox language loaded error message! Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 2:54 PM, Bruce MacKay b.mac...@massey.ac.nz wrote: Hi folks, I've tried a zillion combinations but I can't find the one that will make

[jQuery] Re: How do I add/subtract currency with jquery?

2009-02-07 Thread jQuery Lover
You might find Masked Input plugin useful: http://digitalbush.com/projects/masked-input-plugin/ Also on creating your custom jQuery plugins: http://jquery-howto.blogspot.com/search/label/plugin On Sat, Feb 7, 2009 at 2:10 AM, webopolis krodenho...@gmail.com wrote: I've done this with

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-07 Thread jQuery Lover
I tried to debug the code and the second alert is fired when table.initUI() returns. It's probably how browsers work. When you call .table.initUI() it probably goes through the .table as well.. or something... sounds weird though :) Anyway, it's good you have resolved your problem :))) Good

[jQuery] Re: I can't get Shadowbox to fire!

2009-02-07 Thread jQuery Lover
Still getting the language error. Bruce, why don't you use some lighter lightbox plugins ??? http://www.google.com/search?q=jquery+lightbox+plugin Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 3:27 PM, Bruce MacKay b.mac...@massey.ac.nz wrote:

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-07 Thread jQuery Lover
namespace? On Feb 7, 2:51 am, jQuery Lover ilovejqu...@gmail.com wrote: I tried to debug the code and the second alert is fired when table.initUI() returns. It's probably how browsers work. When you call .table.initUI() it probably goes through the .table as well.. or something... sounds weird

[jQuery] Re: Disable a link temporarily

2009-02-07 Thread jQuery Lover
$('a.show_reset_pass_box').unbind('click'); This line is unbinding ALL click events. So the second click binding function is not fired, since it's not bound... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 2:48 PM, rob303

[jQuery] Re: how to change the iframe src

2009-02-07 Thread jQuery Lover
Don't forget the space between iframe and id: $('#connectframe'+' iframe').attr(src, Why do you have a concatination there anyway ??? $('#connectframe iframe').attr(src, Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 4:08 AM, cindy

[jQuery] Re: live works in IE6?

2009-02-07 Thread jQuery Lover
File a ticket: http://dev.jquery.com Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 3:42 AM, Dhana sldh...@gmail.com wrote: Ok, an update, I put in a few alerts and looks like the event.target is returning the img tag for ie7 and Firefox and

[jQuery] Re: validation plugin: validate checkboxes that don't have same name?

2009-02-06 Thread jQuery Lover
You can add custom rule with your custom validator. Read documentation here: http://docs.jquery.com/Plugins/Validation Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 7:22 AM, claudes claudina.sar...@gmail.com wrote: using validation plugin, is

[jQuery] Re: load() not loading my dynamic page

2009-02-06 Thread jQuery Lover
that you are trying to load? Thanks Photogeek On Feb 5, 8:56 am, jQuery Lover ilovejqu...@gmail.com wrote: Maybe it's related to wrong content type being sent by your server !!! Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Feb 5, 2009 at 7:42 PM, eagleon

[jQuery] Re: dynamically building the for attribute

2009-02-06 Thread jQuery Lover
Ups, I missed the id's of checkboxes... My code was written for checkboxes and label's both without id's... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Feb 5, 2009 at 7:52 PM, Mauricio (Maujor) Samy Silva css.mau...@gmail.com wrote: $('#my-form

[jQuery] Re: Select element based on a value of its child element

2009-02-06 Thread jQuery Lover
Most likely... you should submit a ticket: http://dev.jquery.com/ Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Feb 4, 2009 at 9:24 PM, Stephan Veigl stephan.ve...@gmail.com wrote: Good point. I've just tested input[value=''] and got an error in jQuery.js.

[jQuery] Re: Need to make a edit layout system using php and jquery...?

2009-02-06 Thread jQuery Lover
...@gmail.com wrote: Thanks... So I can save these values with php??? Cause I plan to allow people to make their own profile page layout and need to save these values. On Feb 2, 7:11 am, jQuery Lover ilovejqu...@gmail.com wrote: To find positions and everything:http://docs.jquery.com/CSS

[jQuery] Re: Accessing object tag by id

2009-02-06 Thread jQuery Lover
You might wanna use this: http://jquery.thewikies.com/swfobject/ Or look into the code. May find clues there... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 1:11 PM, Olaf Gleba l...@creatics.de wrote: Sorry, but anyone has a clue ? Am

[jQuery] Re: ui draggable (option drag doesn't work)

2009-02-06 Thread jQuery Lover
I don't see a drag option in draggables documentation... or am i missing anything here ??? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 10:19 AM, Richard D. Worth rdwo...@gmail.com wrote: Which version of jQuery UI are you using? jQuery UI

[jQuery] Re: Superfish Help

2009-02-06 Thread jQuery Lover
Create a dummy user for us so we could see it in action... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 9:16 AM, Aaron Gundel aaron.gun...@gmail.com wrote: if you're logged in? On Thu, Feb 5, 2009 at 5:32 PM, Josh

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread jQuery Lover
That is true I always suggest using built in for() loop with huge data sets... and people keep ignoring me :))) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 8:25 AM, Michael Geary m...@mg.to wrote: ...there is not much room for improvement

[jQuery] Re: Superfish

2009-02-06 Thread jQuery Lover
Yeap, there are multiple ul in the sub menu and the rest of trick is done with CSS. ul#topnav .menu ul.sub_nav { margin:0 10px 0 0; padding:0; width:130px; } Giving each sub navigation ul a fixed width and floating it to the left. Read jQuery HowTo Resource -

[jQuery] Re: Checkbox selection

2009-02-06 Thread jQuery Lover
Something like this might help: $('table tr').click(function(e){ if( $(e.target).is('td') ){ $('input:checkbox', this).attr('checked', 'checked'); } }); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 7:40 AM, Sam Hastings sam.hasti...@gmail.com

[jQuery] Re: General Question RE: Using jQuery with Wordpress

2009-02-06 Thread jQuery Lover
and loads jQuery but I am suspecting that it does not load the jQuery plugin. Can I ask if there is a solution to make the the image cycle work? On Feb 6, 6:45 pm, jQuery Lover ilovejqu...@gmail.com wrote: jQuery works just fine with wordpress. There is nothing in wordpress that may conflict

[jQuery] Re: 1.3, live events, and iphone

2009-02-06 Thread jQuery Lover
What device are you using, and what browser ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 4:14 PM, yad...@gmail.com yad...@gmail.com wrote: hi all, I am having problems getting live events with jquery 1.3.1 to work on the phone ... it

[jQuery] Re: What is the best option to make this modal???

2009-02-06 Thread jQuery Lover
There are dependencies with jQuery UI dialog. You better use one of the other lightweight and simple modal boxes without all unnecessary functionality... http://www.google.com/search?q=jquery+modal+plugin Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6,

[jQuery] Re: 1.3, live events, and iphone

2009-02-06 Thread jQuery Lover
Opsy, my bad. Did not see the title that says iPhone... I suggest using event delegation: www.learningjquery.com/2008/03/working-with-events-part-1 Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 5:45 PM, jQuery Lover ilovejqu...@gmail.com wrote

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-06 Thread jQuery Lover
1. you can acces them like this $('tr td', this).each(...); Also see here for custom plugins and functions: http://jquery-howto.blogspot.com/search/label/plugin 2. when you use $('table') you'll get a selection of all tables. If you do this you would get the same object instance: var $table =

[jQuery] Re: HELP, how to catch these elements ?

2009-02-06 Thread jQuery Lover
To select all tables: $('.cbFieldsContentsTab') OR $('.cbFields') To select all divs: $('.tab-content') OR $('.cb_tab_conten') OR $('.cb_tab_tab_main') To select all tables AND divs: $('.cbFields, .tab-content') Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat,

[jQuery] Re: traversing ajax response with .find in Safari/Chrome

2009-02-06 Thread jQuery Lover
var newItem=$(div#item, response).html(); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 9:02 AM, pedalpete p...@hearwhere.com wrote: I'm trying to get a div from an html ajax response. my code is pretty simple [code] success:

[jQuery] Re: please help me for the performance

2009-02-06 Thread jQuery Lover
Removing image reflection might improve performance... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 2:58 AM, David .Wu chan1...@gmail.com wrote: url: http://chan.idv.tw:90/test/marquee/marquee.html rar:

[jQuery] Re: Hover in a loaded page stopped working??

2009-02-05 Thread jQuery Lover
$(#content).load(showContent.php, UI()); You are calling UI() function. Omit the () for callback... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Feb 5, 2009 at 2:05 PM, 123gotoandplay wesweatyous...@gmail.com wrote: Hi all, I am stuck with this in a page

[jQuery] Re: dynamically building the for attribute

2009-02-05 Thread jQuery Lover
Do this: $('label').each(function(i){ $(this).attr('for', i).prev().attr('id', i); }); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Feb 5, 2009 at 7:25 PM, paulinstl paulsha...@gmail.com wrote: I have a series of labels and checkboxes. The checkboxes'

[jQuery] Re: jQuery query string implementation

2009-02-05 Thread jQuery Lover
Agree, that would be something useful... but it's better to have it as a plugin, since you don't need it for the most of the time... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Feb 5, 2009 at 7:44 PM, Matt Gardner lo...@newmethods.org wrote: John and crew,

[jQuery] Re: load() not loading my dynamic page

2009-02-05 Thread jQuery Lover
Maybe it's related to wrong content type being sent by your server !!! Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Feb 5, 2009 at 7:42 PM, eagleon antonypei...@gmail.com wrote: I've been experiencing the same thing! I hop we can figure out a workaround...

[jQuery] Re: treeview custom icon

2009-02-05 Thread jQuery Lover
I thinks the plugin already added the image, so you have to replace it. As far as I can remember treeview adds icons using CSS so you should give to the entry a specific id/class and specify a new icon in your CSS file... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On

[jQuery] Re: Optimized Function to transfer Array to Listbox

2009-02-05 Thread jQuery Lover
Use simple old javascript. jQuery is a great framework, but sometimes plain javascript is better, your case is an example... (IMO) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 11:49 AM, JQueryProgrammer jain.ashis...@gmail.com wrote: I have two

[jQuery] Re: General Question RE: Using jQuery with Wordpress

2009-02-05 Thread jQuery Lover
jQuery works just fine with wordpress. There is nothing in wordpress that may conflict with jquery. Moreover, wordpress admin panel uses jquery. Can you post a link to your page, so we could look into it and try to find out what's causing the problem... Read jQuery HowTo Resource -

[jQuery] Re: jquery.combobox jumping in internet explorer

2009-02-05 Thread jQuery Lover
You were probably using jquery 1.3.1 and dimensions plugin. Dimensions plugin has been included into the jquery core since 1.2.(don't remember:) ) That is probably the source of the problem... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 12:05

[jQuery] Re: What is difference between ADO and RDO

2009-02-05 Thread jQuery Lover
This is all spam I guess ... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 11:39 AM, Charlie Griefer charlie.grie...@gmail.com wrote: heh... i searched google, but searched the web. didn't search groups :) On Thu, Feb 5, 2009 at 10:36 PM,

  1   2   3   >