Thanks for your response.
Yes I have used that before, but I need to know how to add a callback
function which is called after a set of animations are completed.
If I have an array of dom elements which all need the same animation applied
to them,
how can I tell when all the animations are comple
On Wed, Dec 31, 2008 at 11:26 PM, Cam Spiers wrote:
> Hey,
>
> function closeMainPanels(){
> jQuery("div.mainLiner div.panel").each(function(){
> jQuery(this).slideUp(750);
> });
> }
>
> How can I tell when all panels have finished animation?
>
> As I need to call another function
On Dec 31, 2008, at 4:58 PM, Ricardo Tomasi wrote:
In XHTML the correct value for the checked attribute is 'checked', not
'true'.
Sure, but JavaScript returns true (boolean) for the checked attribute.
Do this in Firebug:
$('input:checked').attr('checked')
or this
$('input:checked')[0].c
Hey,
function closeMainPanels(){
jQuery("div.mainLiner div.panel").each(function(){
jQuery(this).slideUp(750);
});
}
How can I tell when all panels have finished animation?
As I need to call another function when all have finished.
Cheers,
Cam
Very nicely done, everyone!
Rick
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf
Of Richard D. Worth
Sent: Wednesday, December 31, 2008 10:03 PM
To: jquery...@googlegroups.com
Cc: jquery-en@googlegroups.com
Subject: [jQuery] jQuery UI 1.6rc3 is out
jQuery
Hi,
When loading the message box for the first time I get a white circle
appear before my white box appears.
I wonder if it is to do with the fact I am using rounded corners and
the circle may be a mask, anyone else experience this?
Code below:
function showdiv()
{
$.blockUI({
Dear All...
I'am new to jquery
I have some problem. I have some link that have Id that auto generated
from mysql query, till now I could not figure out how jQuery know what
ID that i have clicked . For example:
// The FORM
$query = mysql_query("SELECT id,title FROM book ORDER BY id DESC");
jQuery UI 1.6 release candidate 3 is out.
Blog post:
http://blog.jquery.com/2008/12/31/jquery-ui-16rc3-its-getting-really-close/
Demos:
http://ui.jquery.com/demos
ThemeRoller v2:
http://ui.jquery.com/themeroller
Development Bundle:
http://code.google.com/p/jquery-ui/downloads/detail?name=jquery
Hi, all... and Happy New Year (a little early. US East Coast, 8pm)!
I'm cloning a filefield, and, we'll assume, the user has already
used the browse button to locate a file.
When this filefield is cloned, the file path from the previous field
is still in the new field. I want to empty the filef
> I was trying to select for checked checkboxes so I tried
> $(":checkbox[checked=true]")
That will select all checkboxes with a checked attribute equal to the
string "true" which is probably not what you want.
I am having some problems with a jquery script that I am writing. The
problem is after I receive the data from the php file jquery seems to
skip the if statement. I am logging to console and it is showing yes/
no depends on email address. I am enclosing my scripts in case someone
can help me.
And thank you for writing a proper page in the plugin directory to
describe it, unlike far too many that do little more than give a link
to the source code.
On Dec 31, 11:34 am, Milan1980 wrote:
> Hi everyone,
>
> I have released a new plugin called FlyTabs and would like to get some
> feedback.
In XHTML the correct value for the checked attribute is 'checked', not
'true'.
On Dec 31, 9:29 am, Andy Fish wrote:
> Hi,
>
> I was trying to select for checked checkboxes so I tried
> $(":checkbox[checked=true]")
>
> this never returns anything, even though if I select all checkboxes I
> can
Assuming you have unique names:
var CheckedIDs = [];
$("input.items_id").livequery('click',function(event){
$("input.items_id").each(function() {
if (this.checked) { CheckedIDs[this.name] = $(this).attr
("value"); }
else { CheckedIDs[this.name] = null }
});
})
raphael js might be of help: raphaeljs.com
On Dec 31, 9:39 am, vlain wrote:
> Hi to everybody (happy 2009),
>
> I have to create a diagram (a view from some data). The diagram
> includes objects (rectangle, rounded rectangle, ellipse...) and
> connection beetween objects (different kind of lines
>> About anything can be a key in JS. (DomNodes can't, though
>> btw, but functions objects etc)
>
> No, that isn't true, sorry.
No need to be sorry.
I stand corrected. My misunderstanding of this nuance stems from
having never noticed the toString function defined here ...
toString: fu
> From: pete higgins
>
> About anything can be a key in JS. (DomNodes can't, though
> btw, but functions objects etc)
No, that isn't true, sorry.
Object keys in JavaScript are strings only, nothing else.
> var bar = { a:"b", c:"d" };
> var bar2 = [1,2,3,4];
> var foo = {};
> foo[bar] = "baz";
Please view this URL using IE6 or IE7: http://www.postcardfromparis.com/.
When hovering over the menu items that contain sub-level menu's notice
that the next sibling of the menu shifts down 1-2 pixels when the sub-
level menu is revealed. I thought doing this CSS would fix it but to
no avail.
#
Thanks, fantastic!
On Dec 30, 6:22 am, "Jörn Zaefferer"
wrote:
> Set alwaysOpen: false and active: false.
>
> Jörn
>
> On Mon, Dec 29, 2008 at 6:15 PM,bdemen wrote:
>
> > Hello all-
>
> > As a newbie to jQuery, let me first say I'm terribly impressed. I
> > like to think I've created a great pr
$('#myScan').click() does not have event binded to it.
It means fire myScan's click events, think very straightforward in
this case.
On the other hand, when you click on myScan it fires myDiv event
because of bubbling.
On Dec 31, 11:40 am, nachocab wrote:
> Hi,
> I was wondering how I could r
Hi,
I was wondering how I could replicate event delegation while testing.
For example:
hello
$('#myDiv').click(function(e) {
$this = $(e.target)
if ( $this.is('scan') )
$this.toggleClass("selectedScan")
});
When I click on the scan in the browser, it works. But if I d
And $, don't forget $ :-)
var obj = { $foo_bar$: 'howdy' };
-Mike
_
From: Karl Swedberg
On Dec 31, 2008, at 7:51 AM, pete higgins wrote:
int and float are reserved words as well. Technically, you are
supposed to quote all keys (JSON), but in reality you only need to
quote the r
> >// YUI compressor won't compress if you have no
> >// quotes on keywords
> >float: function() {
> >alert("float");
> >},
> >int: function(){
> >alert("int");
> >}
> > }
> >
> > a.float();
> > a.int();
>
> int and
I think jQuery 1.3 will solve this problem by
$('.teryt').live('click', (function(){
$('#miejscowosci-wybierz-wyniki').load($
(this).attr('href'));
return false;
});
});
On Dec 31, 10:35 am, Karl Swedberg wrote:
> Not a problem at all. Glad to help.
>
> --Karl
>
> On Dec 31, 20
Ok, I am new to jQuery, and web development in genral, however I was
wondering if somebody could show me the correct way of doing this.
Basically I have a in the body which gets it html (including
links) from a post function in "$(document).ready(function(){" (due to
different database user accou
Ok, I am new to jQuery, and web development in genral, however I was
wondering if somebody could show me the correct way of doing this.
Basically I have a in the body which gets it html (including
links) from a post function in "$(document).ready(function(){" (due to
different database user accou
Not a problem at all. Glad to help.
--Karl
On Dec 31, 2008, at 1:31 PM, vcs wrote:
Very very thank this is it:) Sorry :)
On 31 Gru, 18:50, Karl Swedberg wrote:
Hi there,
It sounds like your problem could be addressed by one of the
solutions
offered here:http://docs.jquery.com/Frequently
Very very thank this is it:) Sorry :)
On 31 Gru, 18:50, Karl Swedberg wrote:
> Hi there,
>
> It sounds like your problem could be addressed by one of the solutions
> offered
> here:http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_st...
>
> --Karl
>
>
> Karl Swed
I don't know of anything in jQuery but I'd highly recommend looking into the
graphviz tool if you haven't already. It would require some server-side code
and a lot of Ajax, especially for zooming... but it may be possible.
If you do find some kind of package for this, let me know. I have a persona
Ok I'm getting closer... And thanks again for your help :)
I can manage to have the checked checkboxes added to the CheckedIDs
array. However, if I uncheck a checkbox, it is not removed from the
array.
It's the last little problem I have to solve :)
Here's my code:
var CheckedIDs = [];
$
Hi there,
It sounds like your problem could be addressed by one of the solutions
offered here:
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Dec 31,
On Dec 31, 2008, at 12:28 PM, Matt Wilson wrote:
On Dec 30, 9:56 pm, donb wrote:
Are your CSS directives declared in the header, or did you put them
within the body of the page (where they may be applied later than you
wish, or may not be at all). Are they in a CSS file that isn't being
load
This should be a recursive construction (maybe nesting while-loops)
responding at every mouse click. But I cannot do it. It should be
simple. jquery fetches 'href' attribute value from clicked link and
should load data. So when "#miejscowosci-wybierz-wyniki" link is
clicked, I expect to have new g
On Dec 29, 11:14 pm, "Angel Marquez" wrote:
> they are contemplating hiring me!
> I already sent it back and thought I'd post it here to see the response.
I just noticed this thread, and I have to say... I would be wary of
any potential employer presenting these kinds of questions. It seems
to h
Hi Kean,
Actually, :checked works on radio buttons, too, so if Andy needed to
distinguish between checkboxes and radios, he'd need to do $
(':checkbox:checked') as he mentioned in his original post.
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Dec 31,
The disabled class is not supposed to be assigned to all but the
selected tab. Where did you get that information from? It is only
assigned to tabs that either are disabled via option
$(...).tabs({ disabled: [1, 2]});
or if a single tab is manually disabled:
$(...).tabs('disable', 1);
There is
On Dec 30, 9:56 pm, donb wrote:
> Are your CSS directives declared in the header, or did you put them
> within the body of the page (where they may be applied later than you
> wish, or may not be at all). Are they in a CSS file that isn't being
> loaded? (Use Firefox and Firebug to see is the C
No suggestions unless you show us some code...
--Klaus
On 31 Dez., 08:11, JasonR wrote:
> Hello,
> I have some content and am using the tabs widget to reload without
> refreshing. Everything is working fine except for one problem...the ui-
> tabs-disabled class is not being assigned to any of
thanks for your help! :)
I understand that there's not a standard coding :P
I'll try do my best to code my plugin, and read some other
discussions.
thanks
max
On 29 Dic, 19:54, Balazs Endresz wrote:
> > Which is the right plugin writting way?
>
> Of course, there isn't any :)
> In javascript
Hi, it looks as though you forgot to add ui.core.js which ui.datepicker.js
depends on.
On Wed, Dec 31, 2008 at 4:59 PM, Praveen wrote:
>
> Please is there any one could help me. how may i get datepicker in my
> HTML page
>
> On Dec 31, 12:51 pm, Praveen wrote:
> > Hi All can any one send me a de
Hi everyone,
I have released a new plugin called FlyTabs and would like to get some
feedback.
http://plugins.jquery.com/project/FlyTabs
The purpose of the plugin is for a user to be able to create tabs on-
the-fly that are cross-browser compatible. It uses the list method to
create the tabs, so
I have a table using jeditable within specific TDs. since the form is
generated with js, there is no longer any tabbing between form
elements. What method can i use to allow tabbing between TDs.
i have a simple sample here
http://www.roxstyle.com/projects/blssi/cms/de-tool/person.html#
friends, following what i learned in this post i'm busy rewriting my object.
i have a specific question.
in my old code i would have something like:
var datascape = new Object();
datascape.ini = function(){
datascape.availableWidth = $(window).width();
}
};
can i rewrite it like this:
var
well it's not exactly a user counter ... but for the explanation i
made it a visitor counter
in reality it's a button , whenever someone click that button the
numbers goes up
So you want the user to see changes to the number of visitors to the
site essentially every single second?
If this is what you are after, and you are getting that data from a
database, then a request must be sent every time to that database.
Seems to be pretty taxing, especially if traffic ramps
Correct me if I am wrong but I believe :checked works on checkboxes
only, hence
$(":checked") is sufficient.
On Dec 31, 7:59 am, Karl Swedberg wrote:
> not sure, but this works, too:
>
> $(":checkbox[checked]")
>
> --Karl
>
>
> Karl Swedbergwww.englishrules.comwww.learningjquery.
I don't believe you are using livequery in the proper way. You're
passing an 'each' event, which does not exist here.
In theory, you could do the following:
$("input.item_id").livequery('foo',function(bar) {
alert('nothing happens');
});
In the console, you will see the length of the wrapped s
> and, yeah, I usually put in bare keys (sans quotes) unless necessary, too.
> Not sure why. I guess I just like the clean look.
Yah, they just seem to be wasted bytes, huh?
One thing to note, and the only reason I try to force myself to use
the quotes is for portability. If the data is "really"
Could you point me to a link or show more code? Not sure exactly what
your trying to accomplish here.
Joe
On Dec 31, 9:40 am, vcs wrote:
> Hello everyone!
> My description:
> I have a field (type div), under which links links are available to
> some country's regions and loaded on button click
No, the remote method currently doesn't support any server messages.
It's not likely to be added any time soon either.
Jörn
On Wed, Dec 31, 2008 at 10:43 AM, SeanthePaddy wrote:
>
> hi there,
>
> im using the validate plugin to validate a form and in specific a dath
> of birth field.
> i think i
not sure, but this works, too:
$(":checkbox[checked]")
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Dec 31, 2008, at 6:29 AM, Andy Fish wrote:
Hi,
I was trying to select for checked checkboxes so I tried
$(":checkbox[checked=true]")
this never retur
On Wed, Dec 31, 2008 at 5:29 AM, R0bb13 wrote:
>
> The text input has an initial value but the autocomplete does not care
> about it. Sometimes it works and some times it doesn't. However the
> ajax requests for the text in the input is done but the results are
> not displayed under the input.
C
On Dec 31, 2008, at 9:42 AM, pete higgins wrote:
On Wed, Dec 31, 2008 at 9:34 AM, Karl Swedberg
wrote:
Hi Pete,
I know you already know this, but just for completeness I thought I
should
mention that you need to quote not only reserved-word keys but also
keys
that have a character ot
Hello everyone!
My description:
I have a field (type div), under which links links are available to
some country's regions and loaded on button click. When I click on
loaded data, I mean one of these links, region's districts are loaded.
When I click on one of the districts links, spots (I named
t
The problem seems to be located around these parts:
var CheckedIDs = [];
$("input.item_id").livequery('each',function(add) {
if (this.checked){
alert('push');
CheckedIDs.push($(this).attr("value"));
}
});
On 31 déc, 15:26, jjshell wrote:
> Thanks for your reply :)
>
>
I've got a simple web page that works fine in FF, but chokes in IE, both 7
and 8. All pages are local, including popup.php. I am displaying tables with
data from a mysql db - the tables display, but the error comes in when I
include the function popup js code. The error is "permission denied, cod
Are you using Firebug (http://www.getfirebug.com) to see what/if the
$.ajax call returns?
On Dec 31, 4:55 am, "sho...@ckwi.net" wrote:
> $("#divid").html(data) function of jquery is working fine in IE7 and
> IE6. but in firefox it is not working. it is not giving me html
> output. Anybody can
Hi to everybody (happy 2009),
I have to create a diagram (a view from some data). The diagram
includes objects (rectangle, rounded rectangle, ellipse...) and
connection beetween objects (different kind of lines). Each object
have to display some informations as clickable text and image.
Diagram h
The class ui-tabs-disabled is supposed to be assigned to all but the
selected tab, but it is not working for me. The selected tab is
working great, and when I select tabs it reassigns the ui-tabs-
selected class, so I know everything is set up correctly. Anybody have
any ideas why the ui-tabs-disa
Happy New Year everyone!
It is a pleasure to announce the new release of the GUI-Less browser,
which allows high-level manipulation of web pages, such as filling
forms, clicking links, accessing attributes and values of specific
elements within the pages, you do not have to create lower-level
req
$("#divid").html(data) function of jquery is working fine in IE7 and
IE6. but in firefox it is not working. it is not giving me html
output. Anybody can help me how to use it in firefox.
my funntion is this.
function doData(p_id,cat,cat_id,first,last){
document.getElementById("d
Hi
thanks for a wonderful piece of work, my problem is i use High slide
(http://highslide.com/) all over my site and is well integrated. so is
it possible to use Highslide instead of ThickBox?? below is the
suggestion by Torstein Hønsi who took some time off to offer this
solution below but unfo
Hi,
I was trying to select for checked checkboxes so I tried
$(":checkbox[checked=true]")
this never returns anything, even though if I select all checkboxes I
can test "this.checked" for each one and it returns true/false as
appropriate.
I now understand that I can to :checkbox:checked, but I
is there a better way to write this code to avoid server problem if
the site gets a lot of visitors ?
(keeping the "live" stats)
// the call for the update (it just change an entry in the db total =
total + 1;
function autoupdate() {
$.post("count.php", {count:1},
function(d
Hello,
I have some content and am using the tabs widget to reload without
refreshing. Everything is working fine except for one problem...the ui-
tabs-disabled class is not being assigned to any of the tabs.
Whichever tab I click is assigned the ui-tabs-selected class, and the
tab adopts the style
Hello everyone!
My description:
I have a field (type div), under which links links are available to
some country's regions and loaded on button click. When I click on
loaded data, I mean one of these links, region's districts are loaded.
When I click on one of the districts links, spots (I named
t
Hi,
My problem with JQuery (and JS in general) is that I do not know how
to pass dynamic data to a function.
I have a .click function that is assigned to a link. Here's the code:
$(document).ready(function() {
$("a.youtube").click(function() {
$.ajax({
Hello everyone!
My description:
I have a field (type div), under which links links are available to
some country's regions and loaded on button click. When I click on
loaded data, I mean one of these links, region's districts are loaded.
When I click on one of the districts links, spots (I named
t
Karl,
I think you mean "other than alpha or underscore" (just to
nit/completeness ;) ) Always safer to go with fully quoted, though I
tend to avoid it myself unless necessary.
var foo = { "1bar" : "is valid", 2bar:"is not", _iam:"valid too",
"this-is":"valid also" }
of course, we should mention
On Dec 31, 2008, at 7:51 AM, pete higgins wrote:
int and float are reserved words as well. Technically, you are
supposed to quote all keys (JSON), but in reality you only need to
quote the reserved ones. "default" gets me every time.
Hi Pete,
I know you already know this, but just for comple
Ok, how do I implement this code:
var $tabs = $('#example').tabs(); // first tab selected
$('#my-text-link').click(function() { // bind click event to link
$tabs.tabs('select', 2); // switch to third tab
return false;
});
I'm also looking at the bit of code that looks like this:
$(".se
Thanks for your reply :)
I only get the alert nothing selected though... Tried to go through
the code, couldn't find what is wrong...
Regards,
-jj.
On 31 déc, 14:51, MorningZ wrote:
> Not sure if it's the *best* way, but it works
>
> I'd do something like
>
> var CheckedIDs = [];
> $("input.i
Yes, that is correct.
On Dec 31, 7:33 am, Klaus Hartl wrote:
> I assume you're using UI Tabs...
>
> http://docs.jquery.com/UI/Tabs#...select_a_tab_from_a_text_link_inste...
>
> --Klaus
>
> On 30 Dez., 19:09, Ted wrote:
>
>
>
> > I'm having a problem with Jquery's tab plugin.
>
> > Specifically,
Hell yeah, after reading jquery's method $.param, i understood that the
encodeURIComponent is used to serialize object.
And after reading ECMA spec about this function, I understood that only
UTF-8 is outputed !
So, I understand that it's perfectly ok to utf8_decode() what I receive
serverside i
did you try playing with the $.ajax scriptCharset option ?
see: http://docs.jquery.com/Ajax/jQuery.ajax
On Wed, Dec 31, 2008 at 1:27 PM, AdrianMG wrote:
>
> I am not pretty sure but I think you can work with UTF8 only in AJAX,
> but I recommend you work with UTF8 always
>
> On Dec 30, 2:09 pm, R
Not sure if it's the *best* way, but it works
I'd do something like
var CheckedIDs = [];
$("input.item_id").each(function() {
if (this.checked) { CheckedIDs.push($(this).attr("value")); }
});
if (CheckedIDs.length == 0) {
alert("Nothing selected!");
}
else {
$.post(
"de
Hi Jack,
On 31-Dec-08, at 3:27 AM, Jack Killpatrick wrote:
Hi Bob,
I created the listnav plugin. Thanks for the nice comments about it
in your post, glad you like it.
I certainly do. Nice work!
I'm curious about the issue you're seeing when using Blueprint CSS.
In your post you said t
>// YUI compressor won't compress if you have no quotes on keywords
>float: function() {
>alert("float");
>},
>int: function(){
>alert("int");
>}
> }
>
> a.float();
> a.int();
int and float are reserved words as well. Technic
I assume you're using UI Tabs...
http://docs.jquery.com/UI/Tabs#...select_a_tab_from_a_text_link_instead_of_clicking_a_tab_itself
--Klaus
On 30 Dez., 19:09, Ted wrote:
> I'm having a problem with Jquery's tab plugin.
>
> Specifically, I've got a page with a couple of tabs. On that page, in
>
I am not pretty sure but I think you can work with UTF8 only in AJAX,
but I recommend you work with UTF8 always
On Dec 30, 2:09 pm, Romain Viovi wrote:
> Hello Everybody,
>
> I'm experiencing some problems with the $.ajax
>
> When sending simple post request, request Headers (logged with firebug
Hi,
I have a tabular data I need to be able to delete by selecting
checkboxes, and submitting a form (a .php script then checks which
checkboxes have been submitted, delete by id, return an updated list
of the items injected into the dom).
My problem is that I currently can't manage to gather th
The text input has an initial value but the autocomplete does not care
about it. Sometimes it works and some times it doesn't. However the
ajax requests for the text in the input is done but the results are
not displayed under the input.
thanks everybody and sorry to reply late
I solved my problem with usercontroll,in this way the dialog loads a
usercontroll instead of .aspx page and all the controlls work fine as
well
On Dec 30, 6:33 pm, MorningZ wrote:
> I'd guess by the error that you are trying to load a full aspx page
> int
hi there,
im using the validate plugin to validate a form and in specific a dath
of birth field.
i think i will use the remote functionality to check to see is the
date actually valid. that part is not a problem
however what i want to know is , is it possible to send back different
error messages
Thanks Ricardo,
That's along the lines of what I've been working on, althuogh I didn't
think to use data() of the actual field, I was putting it in data
('field_name') of the form itself - your way is probably nicer!
I was wondering, instead of the each() loop above, is there an event
that I coul
Please is there any one could help me. how may i get datepicker in my
HTML page
On Dec 31, 12:51 pm, Praveen wrote:
> Hi All can any one send me a demo of Jquery calendar
> i wrote this code in html
>
>
> script>
>