Nobody got any ideas why this is happening? It seems pretty obvious
an Opera bug of some kind rather than any particular problem with
jQuery itself, but it is nonetheless very annoying. Has anyone else
encountered a problem like this or know how to work around it?
On Aug 7, 6:10 pm, Gordon <[E
Hey,
Send it to [EMAIL PROTECTED] :-D
-- Yehuda
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 maga
I forgot return:
$.fn.resize = function(max) {
max = max || 100;
return this.each(function() {
if(this.width > this.height && this.width > max) this.width = max;
else if(elem.height > max) elem.height = max;
});
};
That's so it remains chainable.
-- Yehuda
On 8/7/07, Yehuda Katz <
function resize(which, max) {
var elem = document.getElementById(which);
if (elem == undefined || elem == null) return false;
if (max == undefined) max = 100;
if (elem.width > elem.height) {
if (elem.width > max) elem.width = max;
} else {
if (elem.height > max) elem.height = max;
}
}
http://www.whatbird.com/wwwroot/Components/Complete_Search_Tab.html
I called this Zen Garden because I was thinking it would be cool if there
was a number of jQuery examples that demonstrated how to use the various
incredible plugins that are available.
This interface is an example o
Hey folks,
So I'm trying to combine the excellent jQuery tabs (www.stilbuero.de/
jquery/tabs/) with jqModal (http://dev.iceburg.net/jquery/jqModal/)
and am having a bit of trouble in IE6.
Basically, you click a button, jqModal pops up with some tabs. Easy,
you'd think, but then you get this IE6
Yehuda Katz wrote:
$("#produkte + a") should work just fine.
That would require the following markup which is invalid:
$("#produkte > a") will work.
--Klaus
Have you checked out the form plugin. It allows you to convert a form into
an Ajax form, so clicking on the submit button will send an Ajax request
that serializes your form's data.
-- Yehuda
On 8/7/07, Ooze <[EMAIL PROTECTED]> wrote:
>
>
> The form that contains the data i want to $.post is dynam
$("#produkte + a") should work just fine.
-- Yehuda
On 8/7/07, Karl Swedberg <[EMAIL PROTECTED]> wrote:
>
> Hi Hutze,
>
>
> You can use CSS selectors within $() to get what you want.
>
>
> For example:
>
>
> $('#produkte a').html();
>
>
>
>
>
> --Karl
> _
> Karl Swedberg
> www.engl
even that, made this as an offical plugin would be good.
:)
On 8月8日, 上午10時35分, "John Resig" <[EMAIL PROTECTED]> wrote:
> Perfect for a plugin, then! :)
>
> On 8/7/07, howa <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > serveral reasons:
>
> > 1. json will become part of the JavaScript Programming Lan
You're probably running into something similar to this:
http://ideamill.synaptrixgroup.com/?p=14
Try adding style="display:none;" to those TDs before the browser gets them.
With any luck IE will ignore them rather than try to rebuild the entire CSS
object every time you add them to the DOM. Once
On Aug 8, 11:56 am, Josh Bush <[EMAIL PROTECTED]> wrote:
> Well, I feel stupid. it's not the join that's taking so long, it's
> the $( "really big DOM string with 1,000 rows and 3 columns") that
> takes so dang long on IE7.
IE is notoriously slow if you are concatenating using the compound +=
Perfect for a plugin, then! :)
On 8/7/07, howa <[EMAIL PROTECTED]> wrote:
>
> serveral reasons:
>
> 1. json will become part of the JavaScript Programming Language in the
> Fourth Edition of the ECMAScript standard, we should encourage using
> it
> 2. jquery getJSON() is not too secure, e.g. data
serveral reasons:
1. json will become part of the JavaScript Programming Language in the
Fourth Edition of the ECMAScript standard, we should encourage using
it
2. jquery getJSON() is not too secure, e.g. data = eval("(" + data +
")");
3. size is not that large. 1.x kb only
On 8月7日, 下午9時22分, "
In the source of the URL that I linked to. I also just added it to the
main contents, to make it easier to access.
--John
On 8/7/07, Christopher Jordan <[EMAIL PROTECTED]> wrote:
> Those sound really useful! Where can we get the code?
>
> Cheers,
> Chris
>
>
> On 8/7/07, John Resig <[EMAIL PROTE
I don't have a good answer for you, but I ran into this exact problem a
couple months ago. I did a lot of reading online[0] and found it may have
something to do with what IE6 is and isn't caching, and therefore not
(re-)requesting from the web server. I tried:
1. pragma: no-cache [1]
2. Backgroun
Well, I feel stupid. it's not the join that's taking so long, it's
the $( "really big DOM string with 1,000 rows and 3 columns") that
takes so dang long on IE7. After all of this rambling, does anyone
have any options for me to try?
Sorry, for the self-dialog here.
-Josh
On Aug 7, 8:42 pm, Josh
Well, FF2 performance is great at 500-600ms. IE7 is struggling with a
join of 1,000 elements to the tune of 70,000 ms!
Each array element contains a string, something like '12'
Any advice is greatly appreciated. I still feel like a noob in
javascript sometimes. :(
Josh
On Aug 7, 3:40 pm, Josh
Hi Mike,
Give this a shot:
$('table:not([table])').addClass('no-nest');
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Aug 7, 2007, at 6:12 PM, Mike Miller wrote:
Hi,
I am trying to find a way to determine whether or not a particular
table element
Welcome to jQuery! Glad you found us. :-)
I'm also glad that the clueTip plugin is working for you. I'm still
trying to squash one annoying bug that is arising on one web site in
particular, although I haven't seen it anywhere else. As soon as that
is out of the way, I'll be releasing anoth
Those sound really useful! Where can we get the code?
Cheers,
Chris
On 8/7/07, John Resig <[EMAIL PROTECTED]> wrote:
>
>
> Hey everyone -
>
> So Mike Hostetler was telling me about some Ajax queueing plugins that
> he wanted to write - so I got some ideas, and less than an hour later
> - here are
Ok Stephan
Thanks a lot for this explain. Now I can go to right way.
Regards
Mario
2007/8/7, Stephan Beal <[EMAIL PROTECTED]>:
>
>
> On Aug 8, 1:28 am, "Mario Moura" <[EMAIL PROTECTED]> wrote:
> > What I am trying is show an image into my browser with this tag
> >
> > into my
> > browser.
> >
On Aug 8, 1:28 am, "Mario Moura" <[EMAIL PROTECTED]> wrote:
> What I am trying is show an image into my browser with this tag
>
> into my
> browser.
>
> Is it possible? or is a security lock from browsers?
Both. It is possible, but only if your browser allows it.
> I am using $.post()
It is li
Hey everyone -
So Mike Hostetler was telling me about some Ajax queueing plugins that
he wanted to write - so I got some ideas, and less than an hour later
- here are two new Ajax queueing plugins for you to enjoy!
Lame demo:
http://dev.jquery.com/~john/plugins/ajaxqueue/
About the plugins:
*
Ganeshji Marwaha wrote:
By using this instead of standard images for captcha, we aren't
achieving any extra usability, or are we?
and it is pretty easy to decode than images anyways... so i wouldn't
use'em for captcha. but it is fun nevertheless.
-GTG
True, just a thought anyway. Reminds
Hi folks
What I am trying is show an image into my browser with this tag
into my
browser.
Is it possible? or is a security lock from browsers?
I am using $.post()
So I could send the path that user choice C:/Users/example.JPG to my php and
return
But isnt working because browsers cant show
Oh, I thought he wanted the int "7" out of "$7.95". If you just want the
float then use Erik's code, or mine without the parseInt part.
-- Josh
- Original Message -
From: "Erik Beeson" <[EMAIL PROTECTED]>
To:
Sent: Tuesday, August 07, 2007 3:49 PM
Subject: [jQuery] Re: Convert Tex
Yes, all I want is to get a color for a specific class in the CSS.
Basically is this:
I have a class for the links when they are a:link, a:visted and
a:active which has color A, then, I have a different class for a:hover
which has color B. This way, the links will have different colors when
the mo
I think you missunderstood my issue John Resig. Switching style sheets
won't help me at all...
On Aug 7, 9:42 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> How about this simple stylesheet switcher plugin? That seems to be
> close to what you need:
>
> http://www.kelvinluck.com/article/switch-st
Because parseInt('$7.95') is not a number. Perhaps you want:
var price = '$7.95';
var priceFloat = parseFloat(price.substring(1));
--Erik
On 8/7/07, cfdvlpr <[EMAIL PROTECTED]> wrote:
>
> Here's my faulty code:
> var temp parseInt($('td#totalPriceData_1').text());
> alert(temp);
>
> Here's wha
I think you need to get rid of the dollar sign. This will get rid of any
non-numeric characters or decimal points, so will take care of any symbols -
dollar sign, euro or whatever:
var amt = '$7.95';
var result = amt.replace(/[^\d\.]/g,"");
alert(parseInt(result));
-- Josh
- Original
By using this instead of standard images for captcha, we aren't achieving
any extra usability, or are we?
and it is pretty easy to decode than images anyways... so i wouldn't use'em
for captcha. but it is fun nevertheless.
-GTG
On 8/7/07, Robert O'Rourke <[EMAIL PROTECTED]> wrote:
>
>
> Jean-Fran
Fixed! Thanks for the catch.
--John
On 8/7/07, mkidder <[EMAIL PROTECTED]> wrote:
>
> John,
>
> There is a "comma" at the end of line #694 in 1.1.3.1 jquery.js
> source, shouldn't this be a semi-colon? It's not part of an object
> literal, and may cause problems with IE6. We know how it loves
Hi,
I am trying to find a way to determine whether or not a particular
table element has a child table element. If it does not have any
children tables I want to change the class of the table. If it does
have children table elements I do not want to do anything.
Any ideas?
M
Hi,
I need to find a quick way to determine whether or not table elements
on the page have any children table elements...as I want to change the
style class of the innermost table.
Any ideas on how best to do this?
M
First, KUDOS to the developers of JQUERY. I just discovered it a few
days ago and with it, I continue to be amazed of the on-going "web
2.0" tool developments! Being an old school guy, I still have my
concerns about where all this web 2.0 stuff is going, but once you
begin to use it more and yo
>> If you made 2 key (and fundamental changes) I think you could speed up
>the
>> performance immensely:
>>
>> 1) Change to using elements
>> 2) Only use on (or ) for a block of space. (For example on your
>> "String to tables" example, the "j" has 3 rows of 8 columns that are all
>> blank. If y
Here's my faulty code:
var temp parseInt($('td#totalPriceData_1').text());
alert(temp);
Here's what my HTML looks like:
$7.95
Why does alert(
> If you made 2 key (and fundamental changes) I think you could speed up the
> performance immensely:
>
> 1) Change to using elements
> 2) Only use on (or ) for a block of space. (For example on your
> "String to tables" example, the "j" has 3 rows of 8 columns that are all
> blank. If you just
Robert O'Rourke a écrit :
> Neat =]
Thanks!
> Perhaps using tables like that would be another way to do captcha? Not
> writing it out with jquery but with a server side script.
Interesting idea!
Actually some kind of HTML encoded captcha, see
http://it.slashdot.org/article.pl?sid=06/12/31/2359
>> In IE6/7, some things just don't work correctly if an element isn't in
>the
>> DOM. Most of these issues are based upon visual aspects of the element.
>> Also, the cloneNode method in IE 6/7 also has some issues (see
>> http://192.168.1.70/working/jquery/cloneNode_issue.htm )
>
>Is that URL a t
Mike, it does indeed seem that $StoreUpdateForm[0] is undefined on
subsequent clicks. I don't understand why that should be! I've got something
happening now that is causing my page to be repetitively blocked and
unblocked such that it looks like the screen is flashing with a slow fade
(if I weren'
>You are right, I created the element in the DOM and it worked fine.
>However I found this:
>http://www.javascriptkit.com/dhtmltutors/externalcss.shtml
>And it seems it's exactly what I was looking for in the first place,
>but I don't if I should use it as some browsers (though they are less
>used
Spencer wrote:
Howie,
I have a similar problem and posted a question a few weeks ago without
receiving any responses. In my situation we have one image that is
basically a "front" and "back" image. However, the image map needs to
have different hot spots depending on if the viewer is looking
Wow that sucker worked right out of the box! Very elegant. Imagine that in
pure Javascript!
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mitchell Waite
Sent: Tuesday, August 07, 2007 1:07 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re:
Good catch, Mike - that definitely should be a semicolon.
As luck would have it, in this particular case the code works the same with
either the comma or a semicolon (even in IE). It works for the same reason
that these two code sequences are equivalent:
a = b, c = d;
a = b; c = d;
-Mike
I did some more testing on my end. If I create all of the html first
using the array join method for concatenation, and then .append() once
instead of .append()ing 1,000 times, then I'm showing about 90%
improvement in speed. Not too shabby.
On Aug 7, 3:40 pm, Josh Bush <[EMAIL PROTECTED]> wrote
You probably won't be able to get events to propagate up out of the
iframe, but you can have event handlers in the iframe that call out to
functions in the main page. Something like (untested):
main.html:
function handleEventFromIFrame(e) {
alert('Got an event from the iframe: ' + e);
}
samp
Some discussions on the topic:
http://groups.google.com/group/jquery-ui/browse_thread/thread/5423ce211fd9e6b
Glen
On 8/7/07, voltron <[EMAIL PROTECTED]> wrote:
>
>
> Hi all,
>
> I would like to know if progress has been made on the Jquery native
> HTML editor, can one use it production code? Wher
There is a jHeartbeat plugin, but it hasn't been updated in a while,
so who knows how well it works now. You might use it to get you
started though. Also, you might want to look into the JavaScript
functions setInterval and setTimeout.
--Erik
On 8/7/07, voltron <[EMAIL PROTECTED]> wrote:
>
> Ho
> In IE6/7, some things just don't work correctly if an element isn't in the
> DOM. Most of these issues are based upon visual aspects of the element.
> Also, the cloneNode method in IE 6/7 also has some issues (see
> http://192.168.1.70/working/jquery/cloneNode_issue.htm )
Is that URL a typo, or
Hi all,
I would like to know if progress has been made on the Jquery native
HTML editor, can one use it production code? Where can one download
and evaluate the latest version?
Thanks
Howie,
I have a similar problem and posted a question a few weeks ago without
receiving any responses. In my situation we have one image that is
basically a "front" and "back" image. However, the image map needs to
have different hot spots depending on if the viewer is looking at the
front or t
I first noticed this problem with 1.1.2 + Thickbox 3, and from my
testing I believe it is a problem with the thickbox CSS, not with
jQuery itself. I think the secret to fixing this bug is finding why
the #TB_load div centers itself properly... and finding the difference
between the Demo CSS and t
I did new modifies to main.html file, but it doesn't work again:
.hover {
cursor: pointer;
border-width: 3px;
border-style: solid;
border-color: #FF;
}
.selected {
cursor: pointer;
border-width: 2px;
border-color: #FF00FF;
}
function demo(){
var frame=document.getElement
Howdy! how does one making periodical Ajax calls using Jquery?
Thanks
John,
There is a "comma" at the end of line #694 in 1.1.3.1 jquery.js
source, shouldn't this be a semi-colon? It's not part of an object
literal, and may cause problems with IE6. We know how it loves extra
commas.
jQuery.styleFloat = jQuery.browser.msie ? "styleFloat" : "cssFloat",
to
jQuery
Hi People,
I would like to know whether some of you have information about cookie
management with jquery and json. In fact, for the moment, I have a
function that returns a js hash table containing information about
each box ( its column number and rank in the column) on my page. The
boxes are dr
I am trying to swap an image src using jquery, and in FF it works
great, in IE6, its sometimes shows the image, and other times shows
nothing.
$('#arrow').attr("src","arrow_blue_right.gif");
Any ideas?
Way cool. Thanks for using my masked input plugin as one of your
examples!
-Josh
On Aug 7, 5:22 am, Mika Tuupola <[EMAIL PROTECTED]> wrote:
> Many times simple select or textarea is not enough. I have been
> working recently in adding possibility to write custom input types
> for jEditable. It
How about this simple stylesheet switcher plugin? That seems to be
close to what you need:
http://www.kelvinluck.com/article/switch-stylesheets-with-jquery
--John
On 8/7/07, Nazgulled <[EMAIL PROTECTED]> wrote:
>
> You are right, I created the element in the DOM and it worked fine.
> However I
Hi Dan,
yes, exactly this is what I meant. Well, tested it in IE7 now and it works
correctly, so there must really be a problem with my firefox. Well, I don't
have that much plugins installed, mainly some webdev plugins like firebug,
but it has to do something with my config.
So thanks again for
I'm working on a project that makes a web service call and pulls back
data. Sometimes that data can be 1,000ish rows. What is the fastest
way that I can create those rows? Right now I'm just doing string
concatenation to make HTML and passing that to the .append method. I
read the other day wh
You are right, I created the element in the DOM and it worked fine.
However I found this: http://www.javascriptkit.com/dhtmltutors/externalcss.shtml
And it seems it's exactly what I was looking for in the first place,
but I don't if I should use it as some browsers (though they are less
used) do n
Arne,
>thanks for that fingertipp, it makes me understand its behaviour. But
>nonetheless there's now the question: why is this iframe not opened as an
>iframe but as a new tab? What can force a modern browser (Firefox 2.0.x) to
>open an iframe in a new tab?
>
>I'm a bit confused about that...
A
Hi Dan,
thanks for that fingertipp, it makes me understand its behaviour. But
nonetheless there's now the question: why is this iframe not opened as an
iframe but as a new tab? What can force a modern browser (Firefox 2.0.x) to
open an iframe in a new tab?
I'm a bit confused about that...
Greet
I agree (2) is the best approach. Thanks.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of godo
Sent: Monday, August 06, 2007 11:33 PM
To: jQuery (English)
Subject: [jQuery] Re: how to disable a handler with a click
I see to possibilities here:
Jarod, I believe this gives me a good direction. It embodies all the nice
features of jQ. Thank you!
I understand there has to be a flag of some sore set and this is nice
because it passes the path only if the switch is checked. Is the "rel" in
the last statement suppose to be "ref"?
I'll try to
This is awesome stuff Mika. jEditable is a cornerstone of my work with jQuery.
This new stuff looks like just the right level of control to be able
to squeeze a bunch more great functionality out of it.
Keep up the great work!
--Erik
On 8/7/07, Mika Tuupola <[EMAIL PROTECTED]> wrote:
>
> Many
I tested using the unpacked version as well as the packed version and
the problem exists in both. Unfortunately, there is no error message
identifying a line number, since the symptom is that Safari
immediately shuts down. A window with crash details pops up, asking me
to send the info to Apple. T
Fantastic. Thanks.
-Mike Chabot
On 8/7/07, Klaus Hartl <[EMAIL PROTECTED]> wrote:
>
> Mike Chabot wrote:
> > Does anyone have a good way of testing jQuery in old versions of
> > Safari that does not involve installing multiple copies of the Mac OS?
> >
> > I upgraded a high-traffic site from jQu
JF,
>charToTable is a jQuery plugin I wrote some weeks ago.
>This plugin converts characters to HTML tables.
>You can even create animations, or a glyph editor with it.
>Perhaps it will be useful for somebody, who knows?
>
>Description + demos:
>http://www.hovinne.com/blog/index.php/2007/07/12/13
Jean-Francois Hovinne wrote:
Hi All,
charToTable is a jQuery plugin I wrote some weeks ago.
This plugin converts characters to HTML tables.
You can even create animations, or a glyph editor with it.
Perhaps it will be useful for somebody, who knows?
Description + demos:
http://www.hovinne.com/
Arne,
>I'm wondering if there is a way to submit a form async, as it seems that
>it's done synchronous and I cannot find any options regarding this.
>
>I am trying to upload a file using jQuery. I first tried jQuery.ajax, but
>this did not upload the file. So I tried jQuery().ajaxSubmit() from th
wow this rocks... i love it... Thanks for sharing...
-GTG
On 8/7/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote:
>
> That is cool! Great work!
>
> On 8/7/07, Sean Catchpole <[EMAIL PROTECTED]> wrote:
> >
> > Haha, that's fun. Thanks for posting it.
> >
> > ~Sean
> >
>
>
>
> --
> Benjamin Sterli
>I'm trying to do that due to this issue:
>http://groups.google.com/group/jquery-
>en/browse_thread/thread/0a3630dc90b2c10b/1026fc07b5cd587f?#1026fc07b5cd587f
>
>If you have any other and better solution, I'm all hears :)
>
>You say the DOM element does not exist, but isn't that what clone is
>sup
That is cool! Great work!
On 8/7/07, Sean Catchpole <[EMAIL PROTECTED]> wrote:
>
> Haha, that's fun. Thanks for posting it.
>
> ~Sean
>
--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
I'm trying to do that due to this issue:
http://groups.google.com/group/jquery-en/browse_thread/thread/0a3630dc90b2c10b/1026fc07b5cd587f?#1026fc07b5cd587f
If you have any other and better solution, I'm all hears :)
You say the DOM element does not exist, but isn't that what clone is
supposed to
Hi there,
I'm wondering if there is a way to submit a form async, as it seems that
it's done synchronous and I cannot find any options regarding this.
I am trying to upload a file using jQuery. I first tried jQuery.ajax, but
this did not upload the file. So I tried jQuery().ajaxSubmit() fro
About the second one, got it. I guess I'll have to wait for that fix
or keep using the code as I have it now.
For the first one, that didn't work. Thanks though...
On Aug 7, 2:54 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> > I'm having 2 little issues regarding IE6/7 with 2 instructions that
>
Glen Lipka wrote:
Ha. :) I will forward to the engineers. I suppose we should do some
QA, huh?
Yes, try without the apostrophe. Sorry about that.
Glen
No sweat, not your fault. I'm used to it, you'd be surprised how many
big big sites still have that little bugger!
Cheers
Rob
Ha. :) I will forward to the engineers. I suppose we should do some QA,
huh?
Yes, try without the apostrophe. Sorry about that.
Glen
On 8/7/07, Robert O'Rourke <[EMAIL PROTECTED]> wrote:
>
>
> Hey Glen,
> The test drive isn't working for me, my surname has an apostrophe in
> it...
>
> fro
Haha, that's fun. Thanks for posting it.
~Sean
Hi All,
charToTable is a jQuery plugin I wrote some weeks ago.
This plugin converts characters to HTML tables.
You can even create animations, or a glyph editor with it.
Perhaps it will be useful for somebody, who knows?
Description + demos:
http://www.hovinne.com/blog/index.php/2007/07/12/131-j
howa escribió:
What do you think?
I think json is quite a standard way in developing javascript/ajax
apps now.
I don't like JSON inside the jQuery code, because, WHY?
if I download JSON responses from my server, I simply use
var mydata = eval("("+response+")");
I don't need any cleaner r
On Aug 7, 7:23 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> The weird thing is that it works just fine in FF. And the base code even
> works just fine in IE on the demo version found
> here:http://jquery.com/demo/thickbox/
>
> Just not in my code.
Not so strange it works in FF - it is a IE6
Hey Glen,
The test drive isn't working for me, my surname has an apostrophe in
it...
from firebug:
unterminated string literal
MktPage.init("prod_td", "[EMAIL PROTECTED]", "rob O
would continue as: 'Rourke
should I try again and escape it this time?
Cheers,
Rob
Glen Lipka wrote:
Wow,
jQuery 1.2 looks to have a prevUntil() function planned.
http://docs.jquery.com/JQuery_1.2_Roadmap#.nextUntil.28.29_.2F_.prevUntil.28.29
There's a sample for nextUntil there... copy it and change it for your
needs?
Pat
On Aug 6, 11:44 am, DaveG <[EMAIL PROTECTED]> wrote:
> On Mon, 6 Aug 2007 0
Wow, I didnt even know it was there! I emailed them like a month ago.
Thanks Karl for pointing it out and the nice words. :)
The app itself doesn't (unfortunately) use jQuery as the base. It uses YUI.
But the public website does use jQuery heavily, as does the signup
experience.
There is a test
The weird thing is that it works just fine in FF. And the base code even
works just fine in IE on the demo version found here:
http://jquery.com/demo/thickbox/
Just not in my code.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Cees
Sent: Tue
The funny thing is, I can't remember the syntax for any of this stuff.
I literally go to http://jquery.com/api every time I want a click function.
The important thing is to remember what is possible.
Just the core alone is so powerful. Then add the plugins and it's virtually
unlimited.
If jQuery
I want to have a horizontal scrolling list of products so that a user
can compare them side by side. I produced something that works, but
discovered an extremely disconcerting problem that occured in Opera
9.x. Here is a simplified test case:
http://www.w3.org/
TR/xhtml11/DTD/xhtml11.dtd">
http
On Aug 7, 3:13 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> Are you using a frameset in your image gallery?
>
> The only thing I can think of is that we're using a frameset in our admin
> panel.
>
I have the same problem - i do not use a frameset.
As polyrythmic noted, i am also thinking abou
Still, there is issue with callback when using step functions
Glen,
When I started trying to do this with jquery this morning I tried
using toggle but instead got bogged down trying to make is work as
part of an 'animate' hash...
Your solution works beautifully! Thanks very much :-)
Ben, I'd been putting alerts in to try and figure out why my if
statement
Glen,
When I started trying to do this with jquery this morning I tried
using toggle but instead got bogged down trying to make is work as
part of an 'animate' hash...
Your solution works beautifully! Thanks very much :-)
Ben, I'd been putting alerts in to try and figure out why my if
statement
Hey everyone,
Just wanted to let you all know that marketo.com has been featured on
ajaxian.com today:
http://ajaxian.com/archives/marketo-marketing-automation
from the entry: "The tool itself is very rich, and offers first class
usage of Ext JS and jQuery"
The jQuery Project's ve
Any chance that this will be added to the plugins page and SVN? It's a
useful plugin that many may miss otherwise.
On Aug 2, 6:56 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> I just made a quick tweak to .nextUntil() so that it can take a
> comma-separated list of items. I updated the demo to re
John,
>if ( parseFloat(jQuery.fn.jquery) <= 1.1 ) {
> // it's a pixel amount
>} else {
> // it's a decimal amount
>}
I've updated my example code to hopefully be "future" proof. ;)
http://www.pengoworks.com/workshop/jquery/resig_accordion.htm
Have you thought about passing in both the percen
Love the hover accordion, much slicker than making the user click the
heading to expand.
1 - 100 of 172 matches
Mail list logo