Glen; take a look at this one:
http://dev.jquery.com/~gilles/slider/
It's broken, but styled ;)
it needs the interface libs but it should run then...
On Jul 12, 5:04 am, "Glen Lipka" <[EMAIL PROTECTED]> wrote:
> Does anyone have a version of the Interface Slider on a public site?
> Something t
Hi all
I have on my server and see it on this page too:
http://dev.iceburg.net/jquery/jqModal/ a problem.
There is a call to http://:/ initialized from
the JQuery library.
Any idea what forces JQuery to do this call?
Regards
Roger Ineichen
_
Projekt01 GmbH
www.proje
Hey Geoffrey,
Feel free to grab the latest from SVN until I do another official release (
2.1.1) very soon.
http://jqueryjs.googlecode.com/svn/trunk/plugins/bgiframe/
--
Brandon Aaron
On 7/11/07, Geoffrey Knutzen <[EMAIL PROTECTED]> wrote:
I don't have a bullet-proof test of this yet, but it
Whoops, forgot to mention, I had set up this page to test it:
http://www.conciencia.net/Temp/IncludeTest.htm
I have no idea if this possible solution to making getScript work
across all browsers (including Safari) has already been mentioned, but
I thought I'd provide it in case anyone was looking for a way. I've
seen uses of timeouts and such to try to figure out when a script has
been loaded, but ultima
Hi,
Is javascript closure different from closure of the other languages?
Thanks for explaining things and the article you shared.
james
On Jul 12, 10:03 am, Eric Crull <[EMAIL PROTECTED]> wrote:
> The first example is a closure. It only operates when the $.post
> function is completed. If you
Hi benjamin,
Thanks for your fast reply. Thanks for explaining things ... If I
understand it correct data is something $.post created right?
Things now make sense.
james
On Jul 12, 10:32 am, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> James,
> In:
> $.post('test.cgi', params,
>functio
Does anyone have a version of the Interface Slider on a public site?
Something tricked out and nicely designed? Not the demo, one in the wild.
:)
Glen
This sounds like it really has nothing to do with the plugin. You
can't pass blockUI a variable but there are many ways to achieve what
you want. It's just a matter of storing some state somewhere and then
accessing it later. For example, you could use a global variable
(evil), or you could us
I feel the same way about John Resig. ;)
Stephan Beal wrote:
How weird. That man's JS work never fails to amaze me. He was
partially responsible for my renewed interested in the language about
2 years ago.
--
BrightLight Development, LLC.
954-775- (o)
954-600-2726 (c)
[EMAIL PROTECTED]
I can confirm this.
More, .click() broke too.
On 7月12日, 上午6时32分, "Geoffrey Knutzen" <[EMAIL PROTECTED]>
wrote:
> I don't have a bullet-proof test of this yet, but it seems that bgiframe no
> longer works with 1.1.3.1.
>
> Can anyone else confirm?
>
> I don't know why yet.
>
> I, for one, really n
Here is my code:
$("#"+element+"_dragging").fadeTo("normal", 0.5);
yes, originally I meant a textbox or a textarea!!!
On Jul 6, 4:24 am, Gordon <[EMAIL PROTECTED]> wrote:
> Unless you have a very good reason to do so you really should not be
> using javascript to deliberately break behaviour that users expect to
> work. I can't speak for anyone else b
The first example is a closure. It only operates when the $.post
function is completed. If you just tried to use the alert(data) as
you have in the second example it would execute right away.
A closure is the equivalent to burying a time-capsule in the ground to
be dug up later. You could leav
On Jul 12, 12:00 am, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> * You can use jQuery to create elements, eg. $("<" +
> props.elementType +
> ">").addClass(props.elementClass).css('background-color', color)
> <- chaining, too
i think i found a jQ bug (or "unexpected, undocum
On Jul 11, 11:47 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote:
> It may be interesting to note that Doug no longer favors that approach. He
No, i wasn't aware of that.
> now prefers a much simpler technique that works directly with JavaScript's
> prototype system instead of trying to turn it i
I can confirm this. BTW, $("...").click() broke too.
On 7月12日, 上午6时32分, "Geoffrey Knutzen" <[EMAIL PROTECTED]>
wrote:
> I don't have a bullet-proof test of this yet, but it seems that bgiframe no
> longer works with 1.1.3.1.
>
> Can anyone else confirm?
>
> I don't know why yet.
>
> I, for one, r
Ok, Jörn, thanks for that info. I think I will try it out. I don't
plan on doing the things you mention, AFAIK, so perhaps it will work
out for me.
On Jul 11, 5:46 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> AtlantaGeek wrote:
> > The guy that originally put me on to Dan's AutoCompleter lat
On Jul 12, 12:00 am, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> Well now, as there is hardly anything to nitpick (watch out!):
Ah, come on... there's always room for nit-picking! :)
Not you can we pick our colors, but we can pick our nits ;).
> That plugin method name is too long!
When i wrote
>Is there a bug with formHash() and radio buttons? Or am I missing the
>obvious. With this form
Change the hashForm to:
$.fn.formHash = function(inHash){
var bGetHash = (arguments.length == 0);
// create a hash to return
var stHash = {};
James,
In:
$.post('test.cgi', params,
function(data) {
alert(data);
}
);
where data that is being passed thru the function to the alert is the
argument that the $.post function is passing it.
and:
$.post('test.cgi', params, alert(data));
where data, if not set, will alert undefined s
Hi,
I am using $.post() function, I don't understand what is callback
function ...
what is the difference between
$.post('test.cgi', params,
function(data) {
alert(data);
}
);
and
$.post('test.cgi', params, alert(data));
the data being shown is different. and I don't seem to
Stephan Beal wrote:
Hi, all!
Not only can you pick your friends and your nose, but also your
colors...
http://wanderinghorse.net/computing/javascript/#colorpicker
Example usage:
$('#MyDemoColorPicker1').empty().braindeadColorSelector({
clickCallback: function(c) {
$('
hj wrote:
On Jul 9, 10:19 am, Felix Geisendörfer <[EMAIL PROTECTED]> wrote:
I've just been wondering if jQuery has some syntactic sugar for checking
if an element exists. I know the following works:
if ($('#my-element').length) {
/
Just use:
if ( $('p').is('.classNameHere') )
// Do something useful
As others have said before, "hasClass" is on the books for possible
inclusion in jQuery 1.2.
Karl Rudd
On 7/12/07, Brian Cherne <[EMAIL PROTECTED]> wrote:
> > Mootools:
> > includes a hasClass() function:
>
> > P
On Jul 9, 10:19 am, Felix Geisendörfer <[EMAIL PROTECTED]> wrote:
> I've just been wondering if jQuery has some syntactic sugar for checking
> if an element exists. I know the following works:
>
> if ($('#my-element').length) {
> // #
Thanks :)
james
On Jul 12, 7:43 am, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> Hi James,
>
> Sorry for the late entry into this thread.
>
> "Map" is just an informal term we like to use for "object literal."
>
> You can read more about object literals here:
>
> http://developer.mozilla.org/en/do
Hi James,
Sorry for the late entry into this thread.
"Map" is just an informal term we like to use for "object literal."
You can read more about object literals here:
http://developer.mozilla.org/en/docs/
Core_JavaScript_1.5_Guide:Literals#Object_Literals
--Karl
_
Karl Swed
On Jul 11, 2007, at 6:04 PM, Jörn Zaefferer wrote:
Karl Swedberg wrote:
Correct.
When the publisher split the book into 2, Jonathan and I took the
opportunity to add a few chapters to the reference book so that we
could make it a valuable resource in addition to the tutorial
book. We're w
That does a perfect job to disable the checkboxes which is great.
However, it atually makes the checkbox color turn more white that
grey. Would it be rather difficult to actually change the color of
the checkbox to a grey color as there currently is nothing in CSS
supported by the latest browsers
I don't have a bullet-proof test of this yet, but it seems that bgiframe no
longer works with 1.1.3.1.
Can anyone else confirm?
I don't know why yet.
I, for one, really need this plug in
-Geoffrey
Perhaps Dean Edwards' Base library would interest you?
http://dean.edwards.name/weblog/2006/03/base/
On 7/11/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
Michael Geary wrote:
> It may be interesting to note that Doug no longer favors that approach.
He
> now prefers a much simpler technique t
I have a page on which I've hidden a div for use as an adaptable modal
window:
../images/btn/btn_close.gif
I have 2 different types of triggers, for which I want to load 2 different
urls into the jqModal 'target'... let's call them:
.typeA > th
Jörn Zaefferer wrote:
* jQuery itself and therefore most jQuery plugins perform any
exception handling at all - in other words, all errors are handled
as programming errors, letting the calling code handle them; with
Firebug its pretty use to find where exception are thrown, wi
Karl Swedberg wrote:
Correct.
When the publisher split the book into 2, Jonathan and I took the
opportunity to add a few chapters to the reference book so that we
could make it a valuable resource in addition to the tutorial book.
We're working through revisions on those chapters now.
Those
Michael Geary wrote:
It may be interesting to note that Doug no longer favors that approach. He
now prefers a much simpler technique that works directly with JavaScript's
prototype system instead of trying to turn it into classical inheritance:
http://javascript.crockford.com/prototypal.html
I spilled my kool-aid while reading.
nuts.
Glen
On 7/11/07, Stephan Beal <[EMAIL PROTECTED]> wrote:
On Jul 11, 9:57 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> I'm not sure if "Poor Bastards" is the right tone and if some people
> might get that wrong...?
That would be for the magazine edit
Stephan Beal wrote:
Hi, all!
Not only can you pick your friends and your nose, but also your
colors...
http://wanderinghorse.net/computing/javascript/#colorpicker
Example usage:
$('#MyDemoColorPicker1').empty().braindeadColorSelector({
clickCallback: function(c) {
$('
brian,
I agree that filter() is powerful, but it is not a replacement for
hasClass... in fact, as u urself said, it is going to select the elements
and create a jquery object for it and it is unnecessary for such a trivial
check as hasClass... But is() is a replacement for sure... it returns a
bo
> Just guessing (i didn't see the original post), but there's such a
> framework on Douglas Crockford's site:
>
> http://www.crockford.com/javascript/inheritance.html
>
> It's pretty simple to use, but the example code on that page is
> unfortunately "out of order" (by that i mean "not organized
AtlantaGeek wrote:
The guy that originally put me on to Dan's AutoCompleter later said he
should have referred me to the one you refer me to, however I need
something that works for a production app, not something that is
"somewhat" stable. No offense, but an alpha version is not something
I wa
Yes, it is a jqmodal issue.
On 7/11/07 2:03 AM, "james_027" <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> everyone, I am glad to be able to stumble upon this discussion, I am
> also using jqModal recently.
>
> @shelane
> you mean this caching issue is because of jqModal and not on jQuery?
>
> Thank
On Jul 11, 9:44 pm, Stephan Beal <[EMAIL PROTECTED]> wrote:
> [i apologize in in advance if this shows up twice, but several of my
> posts/replies today have either never hit the list or disappeared
> *after* they hit the list.]
As Murphy predicted: i wait 4.5 hours for the original post to show
I think formHash() doesn't do radio buttons correctly. My fix was to
replace
// if we're getting the values, get them now
if( bGetHash ){
stHash[n] = $(el)[defaults.useArray ? "fieldArray" :
"getValue"]();
in $.fn.formHash() with
// if we're getting the
On Jul 11, 11:25 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> Ha, after all it was a good idea to keep jQuery's discussion list
> archives. I think I found what I was looking for, for anyone else
> interested:http://twologic.com/projects/inheritance/
>
> The API is definitely extremely nice.
"
On Jul 11, 6:11 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> I want to select a tag with id "test", like this:
>
> something
>
> what should I do?
You should read the very first page of the tuturials. Then you can
try:
$("#test")
On Jul 11, 9:57 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> I'm not sure if "Poor Bastards" is the right tone and if some people
> might get that wrong...?
That would be for the magazine editor to decide ;). Obviously, it
could be "re-touched" to accommodate "milder personalities."
But so far i
Is there a bug with formHash() and radio buttons? Or am I missing the
obvious. With this form
A
B
C
only the final item (C) displays a value when clicked on. $(#test/
[EMAIL PROTECTED]'foo']").getValue() works for all three choices, but I was
hoping to use the hashmap in some form checki
Jörn Zaefferer wrote:
Stephan Beal wrote:
On Jul 11, 9:41 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
Even more frustrating is that I remember that I searched for it before
and didn't find it at that time. So links or hints and names or
whatever
are very welcome.
Just guessing (i
Brian Cherne wrote:
I've recently updated my jVariations plug-in (not sure if anyone was
using the old version). It is a developer tool that allows you to toggle
variations (aka corner cases) on a single HTML page. Useful for rapid
visualization of code changes... before weaving in the real DH
Stephan Beal wrote:
On Jul 11, 9:41 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
Even more frustrating is that I remember that I searched for it before
and didn't find it at that time. So links or hints and names or whatever
are very welcome.
Just guessing (i didn't see the original
Sass wrote:
Tell me please, is it possible to build site likehttp://www.left-or-right.com/
with using jquery and ajax.
>> yes its possible! [... ] But not in 5min [ ... ] You need a DB
>>(to store Date), PHP (to read the DB), HTML, CSS, JS [ ... ] You
>> can start here: http://www.w3sc
Try sending it directly to Yehuda:
wycats at gmail.com
--John
On 7/11/07, Stephan Beal <[EMAIL PROTECTED]> wrote:
On Jun 29, 10:34 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> For more details please visit the jQuery blog entry here:
>
> http://jquery.com/blog/2007/06/28/163/
Hiya! The email a
oops, fixed. Also, I fixed a mistake in the template. I was including 2
heads/body tags.
If anyone has a page they wanted to test, I can make it live.
Send me
1. Source of the page without any JS. (Css paths should be absolute)
2. A list of selectors you want to test. Should be specific to yo
Correct.
When the publisher split the book into 2, Jonathan and I took the
opportunity to add a few chapters to the reference book so that we
could make it a valuable resource in addition to the tutorial book.
We're working through revisions on those chapters now.
--Karl
___
I just figured it out :) Following the code in SeViR's Google Maps
plugin, I did this:
jQuery.fn.ymap = function(settings) {
return this.each(function() {
new jQuery.ymap(this, settings);
});
}
jQuery.ymap = function(obj, settings) {
// Function Code
}
Wh
Well put.
On Jul 11, 5:54 am, Stephan Beal <[EMAIL PROTECTED]> wrote:
> A public jQuery forum is probably not the place to address non-
> Believers - that is, people who do not use jQuery - but my hope is
> that some of the Believers here will take this and pass it on to any
> non-Believers who t
That's right. We're still putting the finishing touches on that one,
but it should be ready shortly.
On Jul 11, 2007, at 11:22 , AtlantaGeek wrote:
So it seems the reference book is not available, yet, correct?
On Jul 9, 10:57 am, Karl Swedberg <[EMAIL PROTECTED]> wrote:
2. jQuery Refere
I'm attempting a very simple use of jqmodal -- basically the first example
on the plugin page. Works fine in FF but in IE the overlay appears opaque.
Anything obvious I should look for? So far, my googling suggests z-index
issues if the jqmWindow isn't a direct child of body, but I don't think t
Stephan Beal wrote:
A public jQuery forum is probably not the place to address non-
Believers - that is, people who do not use jQuery - but my hope is
that some of the Believers here will take this and pass it on to any
non-Believers who they know, to help convert the Poor Sods who are
wasting t
Glen, you have a typo in the test. It should be jQuery v1.1.3.1! ;)
Glen Lipka wrote:
Actually, I am putting my money where my mouth is:
http://www.commadot.com/jquery/speedtest/
This shows library SIZE and it also uses an actual website. (My blog,
which is typical of normal WordPress blogs)
Does anyone have any comments on this? I know there is a "history/
remote"
plugin by Klaus, but that is more for static sites... I want to pass/
update variables via the anchor. I can't seem to find much info on
this, other than it seems YUI is doing it in the below URL.
Regards,
Graeme
On
I am trying to use jQuery and jq_gmaps.js.
What I need to do is have people click an item in a list, and then
have the google map , slide down under it and show the location.
(ultimately when they click on another entry, the map will slide back
up and then down on the new one they clicked)
I am u
On Jun 29, 10:34 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> For more details please visit the jQuery blog entry here:
>
> http://jquery.com/blog/2007/06/28/163/
Hiya! The email addy in that blog entry no longer works :(. Can you
please post an addy where we can send submissions?
i've got an arti
Hi
Thanks for your answer, but unfortunately this did't help me.
I know, how things work if i have to build this only with PHP and
Mysql (and html, css of course)
I was just asking about tips for implementing jquery and ajax, just
like in page mentioned above. I mean, connecting frontpage with
d
So it seems the reference book is not available, yet, correct?
On Jul 9, 10:57 am, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> 2. jQuery Reference Guide is a 250+ page complete reference to the
> jQuery API and selector expressions (up to v1.1.2), plus individual
> chapters on the Dimensions p
On Jul 11, 9:03 pm, traunic <[EMAIL PROTECTED]> wrote:
> var x =
> a.childNodes[2].firstChild.innerHTML;
> var y =
> b.childNodes[2].firstChild.innerHTML;
> return ((x < y) ? -1 : ((x > y) ? 1 :
...
>
I am trying to pass a variable to the BlockUI plugin. Right now I
have mimicked the demo page at:
http://malsup.com/jquery/block/#dialog
the only thing that I have changed is instead of clicking on a button
to open the modal window, you click on a link with a specific class.
I have many links w
On Jul 11, 8:25 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> Stephan Beal wrote:
> > If you do any significant amount of browser-based JavaScripting (as
> > opposed to embedded code, such as using SpiderMonkey or Rhino)
>
> Even then:http://ejohn.org/blog/bringing-the-browser-to-the-server/
Th
Glen Lipka wrote:
Actually, I am putting my money where my mouth is:
http://www.commadot.com/jquery/speedtest/
This shows library SIZE and it also uses an actual website. (My blog,
which is typical of normal WordPress blogs).
I'm still playing with the selectors. not sure why some didnt fi
Hi, all!
i was just looking at this recent blog post about a jQuery magazine:
http://jquery.com/blog/2007/06/28/163/
in that post it has an email addy for the editor, but that addy no
longer works (and the post is not even 2 weeks old!).
Is there anyone out there related to the magazine projec
Hi Benjamin, I dont know if this is useful but is something about
UNserialize (serialize is, in jquery, the opposite for what you want
to do :) )
http://www.reach1to1.com/sandbox/jquery/testform.html
Saludos from México
Hi, all!
Not only can you pick your friends and your nose, but also your
colors...
http://wanderinghorse.net/computing/javascript/#colorpicker
Example usage:
$('#MyDemoColorPicker1').empty().braindeadColorSelector({
clickCallback: function(c) {
$('#ColorSelectionTarget1
I still think some of my posts are getting massively delayed
(actually, I know this is happening) or canned completely . . .
At present, I don't have the luxury of "playing around", so I was
wondering what is the most stable version that has been posted. Your
original version seems to be working
Hi, all!
[i apologize in in advance if this shows up twice, but several of my
posts/replies today have either never hit the list or disappeared
*after* they hit the list.]
The subject line says it all: here's another color picker plugin:
http://wanderinghorse.net/computing/javascript/#colorpick
On Jul 11, 9:41 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> Even more frustrating is that I remember that I searched for it before
> and didn't find it at that time. So links or hints and names or whatever
> are very welcome.
Just guessing (i didn't see the original post), but there's such a
It doesn't seem to be changing the filter: alpha(opacity=XX) in IE.
Any idea why, am I doing something wrong?
I am trying to pass a variable to the BlockUI plugin so that my modal
window will have that variable in the window. Right now I have
basically mimicked the code found at:
http://malsup.com/jquery/block/#dialog
But instead of clicking on a button to show the window, you click on a
link with a sp
On Jul 11, 4:55 pm, tlob <[EMAIL PROTECTED]> wrote:
> I know a way, by altering the array behind it with PHP. But that is
> not the KISS concept. I like "keep it simple and stupid". There should
> a way to pause all action on the site with jQuery. Could I use
> thehttp://blog.mythin.net/projects/
I want to select a tag with id "test", like this:
something
what should I do?
thank you.
On Jul 11, 4:55 pm, tlob <[EMAIL PROTECTED]> wrote:
...
> I know a way, by altering the array behind it with PHP. But that is
> not the KISS concept. I like "keep it simple and stupid". There should
> a way to pause all action on the site with jQuery. Could I use
> thehttp://blog.mythin.net/proje
Is impossible to use the cookies? To achieve what Benjamin wants to
do.
Sorry for my english. Saludos from México.
Why dont you try a Window widget?
Like the Interface Window
http://interface.eyecon.ro/demos/windows.html
Saludos from México
Ricardo Vega
The guy that originally put me on to Dan's AutoCompleter later said he
should have referred me to the one you refer me to, however I need
something that works for a production app, not something that is
"somewhat" stable. No offense, but an alpha version is not something
I want to use in this web
While performing the following fade effect using the uncompressed
jquery 1.1.3
$("#myimagemap").load("foo.htm");
$("#myimagemap").fadeIn("slow");
this fades nicely in.
However, after replacing the uncompressed with jquery 1.1.3.1-pack the
fade no longer works.
The load is worki
Ya I finally figured that part out. Not liking it but I found a
smooth way of doing what I want.
Thanks for all the replies...
On Jul 11, 6:17 am, Stephan Beal <[EMAIL PROTECTED]> wrote:
> On Jul 10, 1:38 pm, Terry B <[EMAIL PROTECTED]> wrote:
>
> > wtf? I have specific html i want added to a
Good Afternoon All,
I currently in the process of writing my first plugin, but I seem to
have run into a bit of a snag. The plugin will simplify using the
Yahoo Maps AJAX API, and as such requires an empty container to draw
the map in. I have an empty container on my page:
I'm trying to tell th
Hi,
while working with Ext's grid component and subclassing its
Ext.data.HttpProxy for some custom data handling I found that
subclassing approach quite useful for configuration of larger components
(read: plugins). I'd like to explore in what ways that approach could
help making jQuery plug
Actually, I am putting my money where my mouth is:
http://www.commadot.com/jquery/speedtest/
This shows library SIZE and it also uses an actual website. (My blog, which
is typical of normal WordPress blogs).
I'm still playing with the selectors. not sure why some didnt find
anything.
Glen
On
Thank you so much, changed the function to your suggestion and now the
sort is almost instant:
$("#entries").each(function(prntI,prnt){
switch($("#myform div.displayOrderDIV input:checked").val()){
case "createDate":
$("div.entry",prnt).sort(functio
Jack actually points out the fact that "div div div" is pointless. He
also gives a lot of kudos to jQuery and I'm glad for that. He even
mentioned John's nth child script and how well-written it is. I like the
fact that he, in a roundabout way, calls out other libs on the use of
pointless sel
Benjamin Sterling wrote:
Richard,
Thanks, that is what I did, just created a function to do it for me.
I just thought I remember reading that there is a function in jquery
that did that already.
There is a deserialize plugin. But from what I rememeber its mostly
concerned with mapping the re
Mike Hostetler wrote:
I wanted to start some discussion about whether this might be
addressed within jQuery, how to address it, should it be a plugin,
etc. I'd be happy to write one.
This should be a plugin. Your post is a good start and the replies are
interesting, too. I can see that this co
my bad... the link in the install page was stale as u mentioned. i will
correct it along with version 0.3.1
-GTG
On 7/10/07, Kia Niskavaara <[EMAIL PROTECTED]> wrote:
I have a container div that has a width of 350px. But the jCarouselLite
images take the whole width of the screen. Why is that?
Stephan Beal wrote:
If you do any significant amount of browser-based JavaScripting (as
opposed to embedded code, such as using SpiderMonkey or Rhino)
Even then: http://ejohn.org/blog/bringing-the-browser-to-the-server/
Great letter Stephan, thanks.
--
Jörn Zaefferer
http://bassistance.de
http://extjs.com/blog/2007/07/10/css-selectors-speed-myths/
"div div div", we are slowest by like 50 ms, but "div div" we are not
slowest, and within 9ms of the leader.
Who uses "div div div"?
What "div"ference does it make?
Plus, some of the libraries are packed, and some are not. (
hey kia,
This is a bug, i guess... I am in the process of fixing it... i will keep
you updated on when version 0.3.1 is released..
BTW, i am not sure why you are still seeing the older version of my install
page... try refreshing ur browser, coz, i guess you are viewing some cached
page. Lemme k
Richard,
Thanks, that is what I did, just created a function to do it for me. I just
thought I remember reading that there is a function in jquery that did that
already.
Thanks again.
On 7/11/07, Richard D. Worth <[EMAIL PROTECTED]> wrote:
Don't know if there is another way, but my thought is
Done. jQuery gets lots of love from me.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of John Resig
Sent: Wednesday, July 11, 2007 11:20 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] [ANN] Ajaxian Reader Survey
Hey everyone -
Once a year
Hi Michael,
jqModal might do the trick. Take a look at example 3a.
http://dev.iceburg.net/jquery/jqModal/
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jul 11, 2007, at 10:16 AM, Michael Price wrote:
Hi all,
I'm using a thickbox to display some con
1 - 100 of 135 matches
Mail list logo