[jQuery] How to check TD background image has been loaded.

2010-02-25 Thread ace jquery
Hi there, I am trying to update the attr of background in . ==>> is that possibly to use jQuery to check if the background image has been loaded? something like this.. $('#mytd background').load(function(){ alert('the background image has been loaded'); }); Thank you for you help! -Ace

[jQuery] facebox(Using Jquery) with select box in IE6

2009-12-02 Thread JQuery
when i open a facebox, in the background, if there s a selectbox, that selectbox shown above the face box. i need to hide all the select boxes when i open the face box, after closing the facebox, that select boxes need to show.

[jQuery] Re: update div with textarea length

2009-11-24 Thread [jQuery-Br] Ruan Carlos
http://web.djalmaaraujo.com.br/projects/jquery/jquerylimitinput/0.2.1/example.html maybe it's works. On 24 nov, 07:29, Michel Belleville wrote: > As long as it's working now kudos. > > Regards. > > Michel Belleville > > 2009/11/24 rjc > > > > > I&

[jQuery] jQuery validation plug-in 1.5.5

2009-10-28 Thread jquery Noob
Hi, why jQuery validation plug-in 1.5.5 don't work with FireFox version 3.5.4?

[jQuery] ajax submit

2009-09-09 Thread jquery
$('form').submit(function(){ var flage; $.post('test.php',function(data){ if(data.length){ $('#message').html(data); flage = true; } else{

[jQuery] (validate) Show Element instead of js

2009-07-30 Thread jQuery
Hello, I didn't found the same problem ine the groupes: I would like to show error msg already in the page Exemple: This textfield cannont be empty if error the span will become showed. and not show error with the js Thanks you Bri

[jQuery] Re: Issue with Cycle Plugin

2009-06-18 Thread jquery-en
im experiencing the exact same problem - all my images start on top of eachother. If you press cmd+shift+R to reload it doesnt fix it - if you press F5 somehow it fixes it. overflow on my containing div doesn't work either - im very new to jQuery and CSS... so it might be something stupid

[jQuery] Re: Issue with Cycle Plugin

2009-06-18 Thread jquery-en
im experiencing the exact sa On Jun 15, 4:29 pm, Mike Alsup wrote: > Try adding the style "overflow:hidden" to your slideshow container. > > On Jun 14, 9:02 pm, vintom wrote: > > > I am not great with jquery (yet), but I have used a few plugins with > > me

[jQuery] How to delete unneeded function out of Jquery?

2009-05-31 Thread Jquery user
Hello , I'm wondering how to delete unneeded functions out of jquery. (this could strongly reduce the file size!) Can somebody tell me more? For exemple: I don't use the "text( )" function and want to delete it.

[jQuery] How to remove unneeded functions of jquery?

2009-05-31 Thread Jquery user
Hello Jquery members , I'm wondering how to remove unneeded functions out of jquery. This could strongly reduce the file size! Can somebody tell me more about it?

[jQuery] find multiple values

2009-05-11 Thread ace jquery
Hi there, Is there a way to find multiple values? This script checks *name = ben*, what about I want to check if *name = ben* and *name = joe*? Is this possible? Thanks --- var items = [{id:1, name:'bob'}, {id:2, name:'joe'}, {id:3, name:'ben

[jQuery] How to move the DIV?

2009-05-07 Thread ace jquery
Hi there, I am trying to move the div object, but it seems doesn't work. any ideas? Thanks $(document).ready(function () { $("
" ) .attr( "id", "myDiv") .addClass( "header" ) .html( "hello

[jQuery] [autocomplete] Sorry...

2009-04-15 Thread jquery <<>> technicalbloke.com
Jorn wants autocomplete posts tagged [autocomplete] in the Subject line so I'm just reposting a link to my last question (and coincidentally bumping my post ;-) so he might spot it! http://groups.google.com/group/jquery-en/browse_thread/thread/d07cc74a05342b7a or on Stackoverflow.com...

[jQuery] jQuery.autocomplete skipping GET calls...

2009-04-15 Thread jquery <<>> technicalbloke.com
/questions/750670/bypass-all-cacheing-on-jquery-autocomplete1-02 ) so I won't go into too much more detail... Basically I'm monitoring the server side and as I type say 'arse' it is receiving: http://localhost/dynamic_seach?q=a http://localhost/dynamic_seach?q=ars http://

[jQuery] highlight navbar

2009-03-26 Thread new to jquery
I'm trying to make a navigation bar with highlighted tabs. It works when I specifically click the tab, but if I come to the page from an outside link, I can't get the tab to highlight. How could I say something like: $("#navbar a").each(function(){ if(this.href *like* window.location)

[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 wrote: > > How the jquery code was minified? I mean it's about 56 kB, while yui > compressor gives a 72 kB re

[jQuery] Re: How to prevent loading jquery twice

2009-03-23 Thread jQuery Lover
Why not include jQuery in your 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 - http://j

[jQuery] Re: jquery_ajax + servlet problem

2009-03-23 Thread jQuery Lover
JSON() method useful (http://docs.jquery.com/Ajax/jQuery.getJSON). Read jQuery HowTo Resource - http://jquery-howto.blogspot.com 2009/3/23 Michael : > > It takes me almost half a day , but I haven't solve it ,I don't know > why . > I would be much appreciate for y

[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 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

[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 wrote: > > Is it possible to highlight all the text boxes in a from even if there > is an error in just one of

[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 wrote: > > hi folks, if anyone could d

[jQuery] Re: Rotating CSS classes each 5 sec

2009-03-20 Thread jQuery Lover
uot;+(i+1)+")", 5000); } // Call the function swap(0); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Mar 20, 2009 at 5:15 PM, Alexandru Dinulescu wrote: > Hello. > > I have a huge question. I need something that rotates classes each 5 seconds

[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 wrote: > > Sorry not a quiz... I just am having trouble remembering how I b

[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 wrote: > > Hello: >

[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 wrote: > Can You please remove me from jquery newsletter >

[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: 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, P

[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 wrote: > > The jQuery.com homepage's currently shows &q

[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 wrote: > > @7times9 > > I'm not sure what eq() stands for, come to think of it, but I always > read it in my heads a

[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 - htt

[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 wrote: > > Hi All, > &

[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 wrote: > > just wanted to shar

[jQuery] Re: Images in Superfish Menus

2009-03-03 Thread jQuery Lover
Alsage13, did you solve the problem? Could you post an example of your page?! Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 9:28 PM, David Meiser wrote: > Do you have an example page? > > On Tue, Feb 24, 2009 at 10:20 AM, alsag...@

[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: 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 wrote: > > except its not a bug - its a feature request

[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 wrote: > You could try: > >    $('*&#

[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 Lo

[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

[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 wrote: > > Hi, > > I'm really glad it

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

2009-02-24 Thread jQuery Lover
http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.js Or you can read jquery documentaion. I also suggest "Learning jQuery" by Karl Swedberg and Jonathan Chaffer. Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 7:0

[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, h

[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 wrote: > > I am new to Joomla but have a decent understanding of CSS. > > I am trying to figure ou

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

2009-02-24 Thread jQuery Lover
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, Liam Potter wrote: > > ok, but what in jquery knows that $("p", $("#foo")) should look

[jQuery] Re: Using livequery

2009-02-24 Thread jQuery Lover
And also you have this loaded with your ajax content: Untitled Document Testing the meta and title tags are probably not needed here :))) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 6:48 PM, sweat wrote: > > Nevermind, got it w

[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 wrote: > > Hi Stehpan :p > > I understand

[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 wrote: > > > Hi, I have a message pop-up on AOL web bro

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

2009-02-24 Thread jQuery Lover
Any news on this one ? Code Daemon, what was the problem ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Feb 19, 2009 at 3:21 PM, tomasz wawrzyniak wrote: > show fragment of your code (javascript) that is executed (and doens't work > in FF), &g

[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: $(".slide>ul>li").css("display","block"); $.getScript("assets/js/mousewheel.plugin.js

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

2009-02-24 Thread jQuery Lover
.listingimagetwo").hover( function () { $("div.listingimage img").attr("src", source2); }, function(){ $("div.listingimage img").attr("src", source1); } ); }); Read jQu

[jQuery] Re: Changing colour of table rows

2009-02-24 Thread jQuery Lover
That is because you have and asked for #resultslist. This should work: $('.resultslist tbody tr').length Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 6:14 PM, heohni wrote: > > Sorry, but it returns only 0...? > > On

[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 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 2

[jQuery] Re: Changing colour of table rows

2009-02-24 Thread jQuery Lover
rows are there in the table: $('#resultslit tbody tr').length More about it here: http://jquery-howto.blogspot.com/2008/12/howto-find-out-how-many-elements-were.html On Tue, Feb 24, 2009 at 5:47 PM, heohni wrote: > > Hi, > > on a table list of results (amount of rows = un

[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 wrote: >> $.each(data.abbr_data, function(i,get_abb

[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 wrote: > > Hi there, > > I can't seem to find a way to perform the same jQuery method on > multiple jQue

[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: 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 wrote

[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 wrote: > >

[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 wrote: > > Somehow the se

[jQuery] Re: jQuery query string implementation

2009-02-09 Thread jQuery Lover
Nice work... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 7:17 AM, mkmanning wrote: > > FYI I just uploaded a plugin (http://plugins.jquery.com/project/ > parseQuery) that's pretty small (449 bytes minified); it parses the > qu

[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 wrote: > This works fine for replacing the file image, but how can I replace the > collapsable and expandable folder images? >

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

2009-02-09 Thread jQuery Lover
You should probably ask it in CSS mailing list or discussion board... You will get more useful replies there... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sun, Feb 8, 2009 at 9:56 PM, shyhockey...@gmail.com wrote: > > Ok, Now I am having trouble using ph

[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 wrote: > > Well, you have a space in your link. Maybe that's a problem. > Should be: > href="showContent

[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: traversing ajax response with .find in Safari/Chrome

2009-02-09 Thread jQuery Lover
Which version of jQuery are you using ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 9:48 PM, pedalpete wrote: > > like my original statement that works in IE and FF, but not Safari or > Chrome. > Strange > > On Feb 6, 11:1

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

2009-02-09 Thread jQuery Lover
This was his example page: http://horticulture127.massey.ac.nz/dumpthis.htm It seems he sorted it out, since it's working the time I checked... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 9:36 PM, expanism wrote: > > > > O

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

2009-02-09 Thread jQuery Lover
But he is not saying to pass the table object through AJAX call to the server. He is passing it to the function... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 12:32 PM, Konstantin Mirin wrote: > > Passing a table object to AJAX may be n

[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 wrote: > >> File a ticket:http://dev.jquery.com > > Before doing that, post a sample here. A lot of "bugs" are not bugs.

[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&

[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 wrote: > > Ok, an update, > > I put in a few alerts and looks like the event.target is returning the > img tag for ie7 and Fir

[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-h

[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:

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

2009-02-07 Thread jQuery Lover
I think namespacing is always a good idea :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 3:57 PM, ShurikAg wrote: > > Thanks a lot. > > Last question, is it a good idea to pass the object just in order to > stay in the same na

[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 wrote: > > Tha

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

2009-02-07 Thread jQuery Lover
:))) Good luck with the project... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 3:39 PM, ShurikAg wrote: > > I tried something: > > If I pass to initUI this, and using it as bellow: > > jQ.fn.table.initUI = function(obj){ >

[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 wrote: > > I've done this with st

[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 wrote: > > Hi folks, > > I've tried a zillion combinations but I can't find the

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

2009-02-07 Thread jQuery Lover
That's what I did. I put console.log() (firebug console logging). And still not getting that message. Only alert that says "table"... Probably, you are using .table() function somewhere else on non table element ??? ---- Read jQuery HowTo Resource - http://jquery-howto.blogspo

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

2009-02-07 Thread jQuery Lover
I don't have $.log() function so i just commented those lines out... but let me log them with console.log()... NOPE, I did not. I just got a "table" alert box and that's it... Just one alert box! Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On S

[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 wrote: > > hm > which browser you are working with? > > On Feb 7, 1:49 am, jQuery Lover wrote: >> But these lines should not cause 2 alerts... >>

[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 wrote: > > I figured out that the problem starts here: > jQ(

[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 wrote: > Hi, > > Which version of U

[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 A

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

2009-02-07 Thread jQuery Lover
could you post your code with alert statements? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 2:19 PM, ShurikAg wrote: > > And by the way: I tried to return jQ(this)... nothing changes. > > On Feb 7, 1:18 am, ShurikAg wrote: >

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

2009-02-07 Thread jQuery Lover
But you are saying first time you run it, it gives you 'table', the second time you run it, it says it's not a table... This means, the first time it is getting to the return statement... Or did I get you wrong ? ---- Read jQuery HowTo Resource - http://jquery-howto.blogspo

[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 wrote: > > Hi, I'm using the star rating plugin at: > http://www

[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 wr

[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 wrote: > > url: http://chan.idv.tw:90/test/marquee/marquee.html > rar: http://chan.idv.tw:90/test/marquee/marquee.r

[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 wrote: > > I'm trying to get a div from an html ajax response. > my code is pretty simple > > [code] >

[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 H

[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 obj

[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 wrote: > What device are

[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 wrote: > > > hi all, > > I am having problems getting live events with jquery 1.3.1 to work on > the phone

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

2009-02-06 Thread jQuery Lover
There is still a js error in your onAfter() function. You have jQuery.noConflict(); set and using $('.imgcap'). My 2 cents. Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 4:09 PM, MH1988 wrote: > > I honestly cannot believe but I

[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, 200

[jQuery] Re: Superfish

2009-02-06 Thread jQuery Lover
Yeap, there are multiple 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 - http://jquery

[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 wrote: > > "...there is not much room for impro

[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 wrote: > > if you're logged in? > > On Thu, Feb 5, 2009 at 5:32 PM, Josh wrote: >>

[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 wrote: > Which version of jQuery UI are you using? > >

  1   2   3   4   >