Looking good Glen. I like the shadow text technique that you use. I
first noticed it on your Intuit work that you did a while back. It's a
neat trick.
-Marshall
Glen Lipka wrote:
Started some
demos, but got sleepy. :(
I am halfway through a
imageSprite menu.
But for now, this is what I
g
Started some demos, but got sleepy. :(
I am halfway through a imageSprite menu.
But for now, this is what I gots.
http://commadot.com/jquery/hover.php
Glen
On 9/27/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
>
> Consider possibly using hover:
>
> $("p").hover(function(){
> $(this).addClass("hover
It looks like $.unique(array) is only working for arrays of objects at the
moment, which does look like a bug. I've created a ticket:
http://dev.jquery.com/ticket/1747
The ticket has a patch attached including unit tests and a possible fix.
- Richard
On 9/27/07, Sparticat <[EMAIL PROTECTED]> wr
Consider possibly using hover:
$("p").hover(function(){
$(this).addClass("hover");
},function(){
$(this).removeClass("hover");
});
This could be implemented in a number of ways. I find the foreground
image-sprite to be the easiest to maintain and not prone to flicker. It
also allows you to
A google search for 'jQuery stylesheet switcher' turns up:
http://kelvinluck.com/article/switch-stylesheets-with-jquery
--Erik
On 9/27/07, Eridius <[EMAIL PROTECTED]> wrote:
>
>
>
>
> http://demo.sugarondemand.com/sugarcrm_os/index.php?action=index&module=Home
>
> if you click on the blocks of
Guys,
I've decided to try my hand at some basic tutorials. The first is for
basic reusable image rollovers for navbars, etc.
You can find it here:
http://www.atlantajones.com/2007/09/27/easy-reusable-image-rollovers-with-jquery/
Any comments, suggestions or tips for making it better would be mu
>
> Because of the nature of floats, I don't really see a universal
> solution. Wrapping an element or changing its position naturally
> would have a great affect on layout.
I don't think this is a problem with floating the cornered div, but I
suspect it is related to the markup somehow (I have
Its all good! :) I knew that ... no really I mean it! :p
--
Brandon Aaron
On 9/27/07, Michael Geary <[EMAIL PROTECTED]> wrote:
>
> Man, that is some goofy text formatting. I wasn't using larger type for
> emphasis or to be shouting - it was just some kind of glitch that didn't
> show up in the
Man, that is some goofy text formatting. I wasn't using larger type for
emphasis or to be shouting - it was just some kind of glitch
that didn't show up in the outgoing message. I've seen it happen before, not
sure what causes it.
And Brandon, I hope that message didn't come across the wrong wa
> Michael Geary wrote:
> > You're still expecting things to happen in the wrong order.
> > It's *inside the callback* that the data becomes available,
> > and this is long after isTracked() returns.
> From: [EMAIL PROTECTED]
> Yes, but I want have a function that will return what i get from
> i
http://demo.sugarondemand.com/sugarcrm_os/index.php?action=index&module=Home
if you click on the blocks of color at the top, i don't know if they are
just change the css on the fly or completely loading a new css file. Is it
possible to load a different css file on the fly with javascript itsel
On Sep 27, 1:23 pm, Guy Fraser <[EMAIL PROTECTED]> wrote:
> polyrhythmic wrote:
> > I've seen that happen to me before when running .corner() on a floated
> > element. Cornertries to adapt properties from its parent from
> > the .cornerdivs, so if you have some css like #container div { float:
>
Um, Brandon, so what you're saying is that if you comment out the "return
false;" in the first example below (making it the same as
cmbtrx's code), it will fail to display the alert?
Let's think about this...
alert() is a blocking call. It opens the alert box immediately, and the
function doe
As I said to you offlist, it doesn't work that way. The value from $.get CAN
NOT be returned from isTracked because isTracked will have returned before
the $.get callback executes. Instead of:
if(isTracked(code) == 'true') {
// thing A
} else {
//thing B
}
You have to do:
isTracked(code, fun
Apologies for replying to my own thread, but I'm getting closer on the "bug",
The callback function here is where the issue occurs:
function mycarousel_itemLoadCallback(carousel, state)
{
for (var i = carousel.first; i <
Michael Geary wrote:
> You're still expecting things to happen in the wrong order. It's *inside the
> callback* that the data becomes available, and this is
> long after isTracked() returns. Try this instead:
Yes, but I want have a function that will return what i get from
istracked.php
to use
> From: cmbtrx
>
> Uh anyway sorry, the page itself is off-limits (per my client's
> request)...
Naw... You can always create a test case, without any of your client's code,
and post it on a public server like
http://pages.google.com/ - this will make it a LOT easier for people to help
you.
>
Oh and here are the docs that apply:
http://docs.jquery.com/Events/bind#typedatafn
--
Brandon Aaron
On 9/27/07, Brandon Aaron <[EMAIL PROTECTED]> wrote:
>
> The click event on an A tag has a default action associated with it by the
> browser ... more specifically a redirect to the links href. You
Yes, it has to do with Safari's limited call stack and memory issues. In
other words, it can't handle such large amounts of js. I usually test each
module at a time in Safari.
--
Brandon Aaron
On 9/27/07, ravenel <[EMAIL PROTECTED]> wrote:
>
>
> Is this a known problem?
>
>
On 9/27/07, cmbtrx <[EMAIL PROTECTED]> wrote:
>
>
> OK, forgive my tone here...I'm actually quite flabbergasted.
>
> I ***FINALLY*** get around to trying out jquery.
>
> Oh, I'm sure that quite obviously I'm doing something wrong, because
> after following the first few paragraphs of the "How JQuer
Hi all!
Thank you for peeking inside of my post. Anyhow, so I got a
semi-functional carousel up at:
http://devel.phpgeek.org/inventory/single/1
My only issue here is, if you click on an image within the scroll
wheel (but do not yet scroll through past the first three images...),
you'll notice t
The click event on an A tag has a default action associated with it by the
browser ... more specifically a redirect to the links href. You have to stop
this default action in order to see your alert. There are two ways to do
this.
The first way: A click handler can return false to prevent the defa
On Sep 27, 2007, at 11:44 AM, cmbtrx wrote:
OK, forgive my tone here...I'm actually quite flabbergasted.
I ***FINALLY*** get around to trying out jquery.
Oh, I'm sure that quite obviously I'm doing something wrong, because
after following the first few paragraphs of the "How JQuery Works"
sect
Didn't work. I set up a function to parse the Params and show them in
an alert.
The results are blank when I add the #adminForm and show all the
fields on the page when I remove it.
Any other ideas?
On Sep 27, 4:42 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
> Try this:
>
> $('input,select,
lol looks just like mine.
I sense that a stupid typo is fast approaching the direction of this
conversation...
Nice little site that--pastie.
On Sep 27, 5:45 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote:
> On 9/27/07, cmbtrx <[EMAIL PROTECTED]> wrote:
>
>
>
> > OK, forgive my tone here...I
Hi!
Thanks for your reply!
I understand your trick. But it doesn't seem to work and I don't know
why. I tried to do a document.write('.'+id.substr(1)) and it returns
me the right class.
But all my and remain
visible and nothing happens after a click.
Here's my code:
Content 1
I set up a quick function to parse the Parms array I get from this and
it doesn't appear to work.
Basically it is an empty set.
Here is the URL of the page I am working on:
http://www.glyfada.net/index.php?option=com_mtzcssearch&Itemid=46&template=2
under the advanced search form in the center
On Thursday, September 27, 2007 8:44 AM cmbtrx said:
Oooh ooh me too!
> OK, forgive my tone here...I'm actually quite flabbergasted.
OK
But first, when writing to a mailing list with an issue that you want
resolved it's necessary to describe the issue. Some issues can be solved
by just reading
YOU DA MAN Glen!
:-)
On Sep 27, 10:42 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote:
> I whipped up a demo.
> Is this what you meant?
>
> http://www.commadot.com/jquery/checkboxToggle.php
>
> Glen
>
> On 9/27/07, voltron <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hmm, Thanks guys, but maybe I did dot ma
Hi Joan,
Well the fact that GeSHi supports more languages, that's why I used
it. But also, the code is generated directly from the database, in
PHP, so there is no lag before it is marked up
On 9/27/07, Joan Piedra <[EMAIL PROTECTED]> wrote:
> Hey Tane,
> This looks interesting. Have you ever c
try: jQuery('#foo\\.bar\\:filter');
2007/9/27, ravenel <[EMAIL PROTECTED]>:
>
>
> Hello jQuery Coders!
>
> Since it is allowed to use ".", ":" in the id-Tag (http://www.w3.org/
> TR/html4/types.html#h-6.2)
>
> I wonder how I select it while using the jQuery Selector Syntax?
>
> jQuery('#foo.bar:
http://www.000webhost.com/?id=5687
--
==
Acesse o meu blog!
www.webtoo.com.br
==
To select an element with an id="#foo.bar:filter" in CSS you would use:
#foo\.bar\:filter { /* ... */ }
jQuery uses the same syntax (though make sure you're using a newer,
1.2+ version).
When using a "literal" string (that is "string") you will have to
escape the "\"s because of the way Jav
[EMAIL PROTECTED] schrieb:
Will it be? Function like htmlspecialchars() in PHP is useful when you
need to insert some value into or but you also
need non-escaped value too for using it in hashes and/or associative
arrays and then send to server side.
jQuery's text() method escapes html ent
Speaking of that ... I've got a plugin ... unreleased/undocumented at the
moment ... called viewable. It gives you a percentage of the element that is
viewable.
http://brandonaaron.net/jquery/plugins/viewable/test/test.html
--
Brandon Aaron
On 9/27/07, Guy Fraser <[EMAIL PROTECTED]> wrote:
>
>
>
This FAQ should help you.
http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F
--
Brandon Aaron
On 9/27/07, ravenel <[EMAIL PROTECTED]> wrote:
>
>
> Hello jQuery Coders!
>
> Since it is allowed to use ".", ":" in the id-Tag (http://w
voltron schrieb:
Hi Jörn, I think it works now. Do the errors which I define in the
error_container override the default ones in the plugin? Maybe it
would be cool to make this a default validator for your plugin? I
think many others might want this functionality. Thanks for looking
into this pr
Try this:
$('input,select,hidden', '#adminForm').each(function() {
do stuff;
}
This says "get all input, select, hidden elements in the context of
#adminForm."
-- Josh
- Original Message -
From: "mo2g" <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Thursday, September 27, 200
On Sep 27, 2007, at 11:05 AM, ravenel wrote:
Hello jQuery Coders!
Since it is allowed to use ".", ":" in the id-Tag (http://www.w3.org/
TR/html4/types.html#h-6.2)
I wonder how I select it while using the jQuery Selector Syntax?
jQuery('#foo.bar:filter') doesn't work since it means element
I believe you have to do jQuery('#foo\.bar\:filter') but I am not 100%, but
do remember reading a post about it a while back.
On 9/27/07, ravenel <[EMAIL PROTECTED]> wrote:
>
>
> Hello jQuery Coders!
>
> Since it is allowed to use ".", ":" in the id-Tag (http://www.w3.org/
> TR/html4/types.html#h
lmao... I love those cave man commercials.
I can only imagine that you are referring to:
http://docs.jquery.com/How_jQuery_Works
correct?
If so, I have a few questions:
1. Is there code we can look at?
2. Are you doing:
$(document).ready(function(){
$("a").click(function(){
alert("Thanks
Yesterday I replaced a Flex2 uploader I created (that just wasn't working
properly in IE) with SWFUpload and found it to be a joy to work with. I
looked all over (even at some jQuery plugins), but nothing I found was
exactly what I needed (progress bar, multiple files, extendable with
javascript).
OK, forgive my tone here...I'm actually quite flabbergasted.
I ***FINALLY*** get around to trying out jquery.
Oh, I'm sure that quite obviously I'm doing something wrong, because
after following the first few paragraphs of the "How JQuery Works"
section (clicking a link launches an alert box...u
Hi all,
I'd like to have an "ul list", containing "li links" which make appear
two elements in the same time.
Something like this:
show content1
show content2
show content3
blabla
blibli
blabla
blibli
So for example, by clicking on "show content 2", the two div's with
the "content2" class a
Did you add the code inside the ready event? Please post your code for
review. I am sure anyone would be willing to help you.
-Marshall
cmbtrx wrote:
OK, forgive my tone here...I'm actually quite flabbergasted.
I ***FINALLY*** get around to trying out jquery.
Oh, I'm sure that quite obviou
> To answer your specific question, setting
> a variable who's scope is outside the callback is as easy as defining the
> variable outside the callback:
>
> var foo;
> $.get(..., function() { foo = ...; });
Ahh, I know know where was my mistake.
I tried something like that:
function a() {
var r
Is this a known problem?
Do you have a page online somewhere with what you're trying to do? The
most common mistake, when beginning, is to forget a
$(document).ready(function(){ ... }) around your code (causing it to
execute too early).
--John
On 9/27/07, cmbtrx <[EMAIL PROTECTED]> wrote:
>
> OK, forgive my tone here...
I am loading data dynamically with
jquery load function e.g.:
.even{
background-color: red;
}
.even:hover {
background-color: blue;
}
jQuery("tbody").append(data);
that works perfect in FF, but in IE the hover css for the class="even"
is not interpreted anymore in IE for the dynamicly a
What are you trying to do?
I am not a programmer, but I can do all kinds of awesome things with jQuery.
I have a mess of simple demos and experiments here:
http://www.commadot.com/jquery
There are others around too.
Also, what exactly is 79k?
Glen
On 9/27/07, cmbtrx <[EMAIL PROTECTED]> wrote:
>
Uhhh... Can you post a link to your test page?
It's impossible to guess what might be wrong otherwise.
-Mike
> From: cmbtrx
>
> OK, forgive my tone here...I'm actually quite flabbergasted.
>
> I ***FINALLY*** get around to trying out jquery.
>
> Oh, I'm sure that quite obviously I'm doi
Frank Tudor wrote:
> Code anticipation would score bonus points.
While my tired brain was wondering what you meant by that, it came up
with a completely unrelated idea - we could modify/extend the lazy image
loader plugin [1] so that code blocks "below the fold" would not get
syntax highlighte
You're still expecting things to happen in the wrong order. It's *inside the
callback* that the data becomes available, and this is
long after isTracked() returns. Try this instead:
var r;
function isTracked(personcode, callback) {
$.get('trackstudent/istracked.php',{'person
polyrhythmic wrote:
> I've seen that happen to me before when running .corner() on a floated
> element. Corner tries to adapt properties from its parent from
> the .corner divs, so if you have some css like #container div { float:
> left; } the float will be applied to your .corner divs too, and
Whenever I try to use the $.unique() function it just returns the array
without removing the duplicates.
$.unique([0,1,1,2,2,3]); returns [0,1,1,2,2,3] instead of [0,1,2,3] as
described at: http://docs.jquery.com/Utilities/jQuery.unique#array
Is this a bug or am I missing something?
I'm curre
This is because the selector didn't match any elements before trying to call
a method within dimensions (maybe offset).
--
Brandon Aaron
On 9/27/07, HelloWorld <[EMAIL PROTECTED]> wrote:
>
>
> Hi. I'm experiencing a conflict w/ the Accessible News Slider and the
> Dimensions plugin (as required b
I whipped up a demo.
Is this what you meant?
http://www.commadot.com/jquery/checkboxToggle.php
Glen
On 9/27/07, voltron <[EMAIL PROTECTED]> wrote:
>
>
> Hmm, Thanks guys, but maybe I did dot make myself to clear. I am able
> to check the boxes, but I´m not able to toggle between both states.
>
First of all - Thank You very much - it is good lesson.
> To answer your specific question, setting
> a variable who's scope is outside the callback is as easy as defining the
> variable outside the callback:
>
> var foo;
> $.get(..., function() { foo = ...; });
I tried that before:
function te
Hello I just tested the The Excellent Easing Plugin from
http://gsgd.co.uk/sandbox/jquery.easing.php with jQuery 1.2.1. and
all methods work fine except:
expoin, expoinout, expoout
These methods use Math.exp:
expoout: function(x, t, b, c, d) {
var flip = 1;
Hey Tane,
This looks interesting. Have you ever consider to use chili instead of
geshi? What do you think would be better in this case, a server-load or
client-load?
Cheers,
On 9/26/07, Sean Catchpole <[EMAIL PROTECTED]> wrote:
>
> Looking good Tane. The only changes I'd make are CSS related, but
i have been to the jCarousel website...but it does not have any drupal
examples on how to use jCarousel.
Can someone offer up an example to use this with drupal ??? please?
thanks
mjh
Robert Koberg wrote:
> You don't need 1.6. The current version works in 1.4.
>
> You can get Rhino from mozilla (which is what is bundled in 1.6) at:
>
> http://www.mozilla.org/rhino/
>
The JSR 223 stuff in general works better on 1.6 though - especially
things like Quercus (PHP in Java), etc
Hello jQuery Coders!
Since it is allowed to use ".", ":" in the id-Tag (http://www.w3.org/
TR/html4/types.html#h-6.2)
I wonder how I select it while using the jQuery Selector Syntax?
jQuery('#foo.bar:filter') doesn't work since it means element with id
foo and class bar and filter data?
is
duff wrote:
> But then again, if the filters only apply to the element, why does it
> filter nothing regardless of the filter if it contains spaces ?.
> Shouldn't the filter return nothing if the expression cannot be
> evaluated ?(fail safe rather than silently)
>
+10
I concur - it should retu
Thanks Ben... That would be awesome!
On 9/27/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote:
>
> Franks,
> I put something for Dreamweaver a while ago, I think we were on 1.1.1 at
> that time, let me see if I can find those files and will hit you up off list
> if I find them.
>
> On 9/27/07, Fran
> function isTracked(personcode, callback) {
> $.get('trackstudent/istracked.php', {'personcode': personcode}, callback);
>
> }
>
> isTracked(code, function(tracked) {
> // do something with tracked, exactly as you would have done above.
>
> });
I thought that I understand that but Im doing s
Hi I have made a scroller based in the jnewsscroll plugin, you can
view it at http://demo4.vantageglobal.com/view/skin/v10/ , the problem
is that it have a stuttering, the movement is not smooth, it's very
noticeable in Firefox and it's a little better at Explorer.
Do you know that this could be f
Sorry if this double posts...
I am a newbie with JQuery and have ported a form from Prototype.
I have two forms on a page:
more fields...
more fields...
I am using the following code on the page to parse the input from the
form:
$('input, select, hidden').each(function(){
The
Yes, but just with the methods using Math.exp()... e.g. expoout
All the other methods are working porperly...
don't understand why it breaks only these
On 27 Sep., 16:58, GianCarlo Mingati <[EMAIL PROTECTED]>
wrote:
> hi guys.
> Has anybody experienced problems since the release of the new
Hi I have made a scroller based in the jnewsscroll plugin, you can
view it at http://demo4.vantageglobal.com/view/skin/v10/ , the problem
is that it have a stuttering, the movement is not smooth, it's very
noticeable in Firefox and it's a little better at Explorer.
Do you know that this could be f
Hey! When're you going to update Chili Central[1] with the new link?
^_^
Pyro
[1] http://noteslog.com/chili/
Hi. I'm experiencing a conflict w/ the Accessible News Slider and the
Dimensions plugin (as required by the ClueTip plugin).
No customizations made.
a 'no object' error:
[Exception... "'Dimensions: jQuery collection is empty' when calling
method: [nsIDOMEventListener::handleEvent]" nsresult: "0
Your DOM updates won't be sticky, but "to reload the page" you can
window.location.reload().
Of course, you seem to be headed in a cleaner direction: just changing
the text elements in the DOM directly instead of reloading the page.
On Sep 27, 11:23 am, Danjojo <[EMAIL PROTECTED]> wrote:
> Is it
On 9/27/07, Danjojo <[EMAIL PROTECTED]> wrote:
>
>
> $.cookie('language', country, {expires: 7}); // set cookie
if you just want to reload the page, you could use window.reload();
$.cookie('language', country, {expires: 7}); // set cookie
window.reload();
I believe if you try to
Hi I have made a scroller based in the jnewsscroll plugin, you can
view it at http://demo4.vantageglobal.com/view/skin/v10/ , the problem
is that it have a stuttering, the movement is not smooth, it's very
noticeable in Firefox and it's a little better at Explorer.
Do you know that this could be f
Map is really nice for this.
var attributes = $('.selected').map(function() { return $(this).attr('rel');
});
VP
Hi,
I am working on a website using jquery for ajax with various other
jquery plugins. In my app, when making ajax queries for forms, i
return back the complete form as html since it carries information
about validation which is done on the server-side.
Taking 2 plugin into consideration, one th
Erik Beeson wrote:
> $.get is asynchronous, meaning the call to $.get returns immediately,
> even before the callback has happened. To answer your specific
> question, setting a variable who's scope is outside the callback is as
> easy as defining the variable outside the callback:
Erik - your
http://spielwelt6.knightfight.de/?ac=vid&vid=121044096
Franks,
I put something for Dreamweaver a while ago, I think we were on 1.1.1 at
that time, let me see if I can find those files and will hit you up off list
if I find them.
On 9/27/07, Frank Tudor <[EMAIL PROTECTED]> wrote:
>
> I like this idea, and pardon me if this has been asked before, but is
Hmm, Thanks guys, but maybe I did dot make myself to clear. I am able
to check the boxes, but I´m not able to toggle between both states.
When the user checks the box, an input field is to be disabled, and
when he unchecks it, the input box should be enabled, thats fwhat the
toggle function is fo
Ahhh...
Easy enough. Turns out I don't need that functionality after all, but that's
good to keep in mind. Thanks.
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Benjamin Sterling
Sent: Thursday, September 27, 2007 11:26 AM
To: jquery-en@googlegroups.com
Subje
That looks a lot more promising! Does anyone have experience implementing
this extension that would like to help?
--
Brandon Aaron
On 9/27/07, Sam Collett <[EMAIL PROTECTED]> wrote:
>
>
> You use MediaWiki don't you? If so can't you convert the Wiki markup
> to Xml and go from there? e.g.
> http:
I like this idea, and pardon me if this has been asked before, but is there
a code higlighter for jQuery that can be used in dreamweaver?
Code anticipation would score bonus points.
Frank
On 9/27/07, Steve Blades <[EMAIL PROTECTED]> wrote:
>
> Looks outstanding. Now, if it only had a syntax high
You have to use functions in that code, because you are using two callbacks,
and that's how you do callbacks in JavaScript, with
functions that get called later.
The first callback is the outer function that gets called when the document is
ready.
The second callback is the inner function that
You use MediaWiki don't you? If so can't you convert the Wiki markup
to Xml and go from there? e.g. http://www.mediawiki.org/wiki/Extension:Wiki2xml
Much better than screen scraping.
On Sep 27, 4:24 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
> The documentation is going through some growing
That is true, that is the correct behaviour, there was specific talk about
what you are expecting a bit ago and I can't remember the end discussion, it
may have even been on the dev list. I will see if I can come across it.
Ultimately, you can do:
var $selected = Array();
$('.selected').each(fun
Okay...
Don't want to be demanding...just looking for the simplest, most
straight-forward docs. Thanks for all your hard work Brandon...I know most
(if not all) of you guys are doing this in your spare time.
It's appreciated.
andy
_
From: jquery-en@googlegroups.com [mailto:[EMAIL
I've seen that happen to me before when running .corner() on a floated
element. Corner tries to adapt properties from its parent from
the .corner divs, so if you have some css like #container div { float:
left; } the float will be applied to your .corner divs too, and bork
your layout. Corner wo
hi guys.
Has anybody experienced problems since the release of the new jquery
1.2 and it's use in conjunction with the plugin in subject?
I found that the expoinout method and all the "inout" methods do not
work anymore smootly.
GC
If I wanted to get the rel values for all elements which match a jQuery
call, how would I do that?
I thought that this:
var $selected = $('.selected').attr('rel');
alert($selected);
would give me this: 9/1/2007,9/30/2007
But it only returns the first value. Is this correct behaviour? I basi
> Is there a reason you didn't replace this.getElementsByTagName?
On the first .getElementsByTagName - there's no particular reason to
justify using jQuery.
However, the second one should really read:
$('p', this).each(...
There really only there because I did a two minute conversion from
Prot
Here's a great article I read recently on implementing undo (enhanced from
original post, based on reader inputs):
http://humanized.com/weblog/2007/09/21/undo-made-easy-with-ajax-part-15/
Demo:
http://humanized.com/weblog/images/resources/undo/todo_sync.html
Source (using jQuery, natch):
http:/
Looks outstanding. Now, if it only had a syntax highlight library for
ColdFusion;).
On 9/27/07, Andrea Ercolino <[EMAIL PROTECTED]> wrote:
>
>
>
> Very simple. Look at the new example posted in
> http://noteslog.com/post/chili-19-released-today/ : It's what you're
> looking
> for.
>
> But Chil
The documentation is going through some growing pains. Currently the only
source of documentation for 1.2.x is on the wiki. I've been thinking about
how we can take those docs and create an XML file like we had before ...
currently the only idea I have is to screen scrape which if you look at the
a
Is it possible to reload the page right after I set the cookie?
Cause I have to update all of the text in a different language..
// Flag image change on menu select, set the cookie with the spoken
language choice
// and reload the page in that language
$("#languages").bind('change', function()
funny, I just had a co-worker Ive been introducing to jQuery yesterday say:
"[jQuery is] worth including even if only for the document.ready function"
Glen Lipka wrote:
>
> Network Solutions just revamped their whole account manager.
> Guess what library they depend on? It rhymes with Mayberr
I use this:
http://jquery.com/api/
all the time because it's the simplest, easiest, reference for jQuery
methods and behaviours. But it still lists it's version as 1.1.2. Are there
plans to update this reference?
Alternately, I'd argue that there needs to be ONE single point of entry (on
the jQ
$(":checkbox").attr("checked","anyThingWillCheckIt")
$(":checkbox").removeAttr("checked")
Glen
On 9/27/07, Erik Beeson <[EMAIL PROTECTED]> wrote:
>
> To check or uncheck a checkbox, assign true or false to its 'checked'
> property (untested): $('#myCheckbox')[0].checked = true; or
> $('#myCheckb
weide escribió:
> I Search the web and found code like down:
>
> > 2. Can one validate date formats form other countries like Germany?
>
> This is a YAV config setting, by example Spain date format is
> dd-MM-, so in the second map param
> of the plugi
1 - 100 of 136 matches
Mail list logo