I see you have a typo and wrong id?
$("#commentform form").submit(function(){
var uname = $("#commenter").val();
^^ wrong id?
var email = $('#email').val();
var url = $('#website').val();
Just saw that kohls was using jquery on their site, and by using I
mean including it. I could not actually see them using it anywhere,
though I probably just could not find it. Anyway, there are plenty of
places where they should have used it to simplify things.
http://www.kohls.com/upgrade/mya
Was hoping someone could shed some light on this, but I'll post back
if I find the problem, just hard with no errors.
The .next() method will only select the very next sibling. If you
have other siblings in between the two h4s, you'll need to use a
different selector.
You could try this instead:
jQuery('div.faq h4').click(function() {
jQuery('~ h4:first', this).addClass('top');
});
That'll find the first
I usually do:
$().bind('click', function(event) {
event.preventDefault().
...
});
On Thursday 30 August 2007, Rafael Santos wrote:
> Are there anyone who have a snippet to really prevent the something is
> fired.
>
> Sometimes my "return false" doesn't work on FF, IE6 and IE7. hehe =(
>
> An
I need the check of a checkbox disable other inputs and change value
to others.
Here the code:
//click on keep prop cancel unnecesary fields
$(document).ready(function(){
$('#keepProp').click(function(){
state = $('.percent').val();
if (this.checked){
When does return false not work?
--John
On 8/30/07, Rafael Santos <[EMAIL PROTECTED]> wrote:
> Are there anyone who have a snippet to really prevent the something is
> fired.
>
> Sometimes my "return false" doesn't work on FF, IE6 and IE7. hehe =(
>
> And i see mootools can do something like thi
Are there anyone who have a snippet to really prevent the something is
fired.
Sometimes my "return false" doesn't work on FF, IE6 and IE7. hehe =(
And i see mootools can do something like this:
e.stop();
--
Rafael Santos Sá :: webdeveloper
www.rafael-santos.com
Ah. I jumped the gun thinking he had simply cut and pasted his post
because I read this "[From the original thread:]" in the message.
Thats what I get for not taking the time to fully read whats in front of
me. :P
Sorry about that Bennett.
Rey
Mike Alsup wrote:
Yes I read the original po
Thinking about this, ideally, this would the way a "ideal JS/DOM/HTML"
system would behave:
function divConstructor(self) {
...
}
What happens now is that when the page is being rendered (spit out by
the server and received by the browser), when DOM sees elements like
tis with the onC
On Aug 30, 11:19 pm, Giant Jam Sandwich <[EMAIL PROTECTED]> wrote:
> Thanks for pointing out that bug. I can't believe in all this time I
> never found that. Part of my tests usually is to click a bunch of
> times on stuff like that to see what happens. I will have to take
> another look at it --
> Yes I read the original post plus what you wrote on your site. What I'm
> asking for is an actual example, not just a "hypothetical" scenario.
I think Bennett gave an excellent example with the rounded corners
bit. I often see delayed rounding on page load.
Mike
> I have made a final adjustment to the Accessible News Slider plugin
> for jQuery, and I will no longer be supporting new releases or feature
> requests. The primary purpose behind building this plugin was to
> demonstrate that dynamic components can be accessible if appropriate
> steps are taken
Error: [Exception... "'Permission denied to call method
XMLHttpRequest.open' when calling method:
[nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e
(NS_ERROR_XPC_JS_THREW_STRING)" location: "" data: no]
this is the error message I get when I switch from http to https. It
works fine in
> I'm using the cookie plugin. And, I have created 4 cookies with it
> and they are named [Expanded[]].
>
> I also keep a count of the number of cookies that have been created
> and the name of this cookie is [onExpandCount].
>
> How do I loop through these cookies?
>
> function expandMenuUsingCo
Hi all,
i'm trying to make a script that selects a different image depending
on the id of the div then if the div isn't existing show a different
image.
I'm quite new to jquery, but have some php skills.
1- is the first i tried but no good. (it stills hovers but doesn't
show any different image
Rey, I think, if its the same thing I am thinking would be where many
developers and working sites mix up HTML and
Since the only thing you're doing with the underlying DOM element ('this' in
the callback function) is to wrap it right back up in a $() wrapper, you can
do it much more simply:
var text = $(html).find('#invoice').text();
alert( text );
You could also write it this way:
var text = $('#
Hi Bennett,
Yes I read the original post plus what you wrote on your site. What I'm
asking for is an actual example, not just a "hypothetical" scenario.
Rey...
Bennett McElwee wrote:
I'm really interested in understanding more about this plugin. Could you
give an example of when and how it
Next() will only get siblings -- can you post the html?
-- Josh
- Original Message -
From: "ruperdupe" <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Thursday, August 30, 2007 11:36 AM
Subject: [jQuery] next() problems
What I'm trying to do is when someone clicks on a h4 headin
Error: [Exception... "'Permission denied to call method
XMLHttpRequest.open' when calling method:
[nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e
(NS_ERROR_XPC_JS_THREW_STRING)" location: "" data: no]
this is the error message I get when I switch from http to https. It
works fine in
I am using the latest version of Jquery. I did however, figure out the
problem. I am using Coldfusion and yesterday when I was working of
another problem I turned on debugging and that is when the problem
appeared. I had forgotten that I turned it on until today so when I
turned it off the problem
Very cool Josh thanks for letting me know. I'll check it out.
On Aug 30, 3:09 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
> Hey Jim,
>
> I have an extension "jqURL" you can check out. The demos aren't quite
> finished, but it works. Here's the link:
>
> http://www.oakcitygraphics.com/jquery
You're right, I had pasted the code snippet from another script and
forgot to change the code. I do only have a question though. If am
only meaning to look for an ID that only exists once, what would be
the syntax for that?
For example, right now I have
$(html).find('#invoice').each(function(){
What I'm trying to do is when someone clicks on a h4 heading the next
one has a class (top) added to it. In between each heading there are
other elements. The h4s are inside a div called 'faq'.
So far I've tried:
jQuery('div.faq h4').click(function() {
jQuery(this).next().addClass('top');
});
A
Hi Glenn,
If you are asking where the script to include the js for jquery is, it is
located within the head tag of the first page. my jquery js file (v 1.1.3.1
btw) is located in the folder as both the source page and the page retrieved.
Does this answer your question?
-Kevin
Date: Wed, 29
Hi Rolf
Let us know how you go - I'd be interested to see how it comes out.
I think the Dashboard implementation is very elegant. Something
similar would make a great jQuery plug-in (but way beyond my skill).
Regards
Duncan
- - - - - - - - - - - - - - - - -
Sprocket Web Design
www.sprocket.co.n
it seems to be the image cuase when i put image under one there is a space
on the bottom, what the hell could be cuasing this?
Eridius wrote:
>
> http://www.kaizendigital.com/index2.php
>
> I don't see anything wrong with my code of jdmenu codee(css wize) but when
> using jdmeny and am image
> I'm really interested in understanding more about this plugin. Could you
> give an example of when and how it might be used? I know you listed some
> sample code on your page but I'd like to get a use case for it.
[From the original thread:]
Here's a simple example of where jQuery.ready is ins
> 1: Grab the value of a form input
> 2: Grab results of a .php page via AJAX ( $.get()?? )
> 3: Check through the AJAX results ( should i return the data as JSON?
> or just | it? )
> 4: If there is a match / likeness for what is in the form input
> addClass('error') IF NOT addClass('accept')
...
have you tried wrapping $.cookie('onExpandCount') in a
parseInt($.cookie('onExpandCount'))?
Also
On 8/30/07, cfdvlpr <[EMAIL PROTECTED]> wrote:
>
>
> I think this is actually more of a problem with Javascript syntax than
> it is with the cookie plugin, but any help would be much appreciated.
>
>
Hi,
I would like to know if there are plans to integrate a quicksearch (
http://rikrikrik.com/jquery/quicksearch) funcionality in the tablesorter
plugin as a widget.
If someone already did that, can you share please?
Thanks in advance
I saw that, but I want to
actually display the calendar itself, not just on popup, but fully
displayed.
AFAIK kevin's plugin is capable to do this. See: http://kelvinluck.com/assets/jquery/datePicker/v2/demo/renderCalendar.html
-- Felix
--
My Blog: http://www.thinkingph
Hey Jim,
I have an extension "jqURL" you can check out. The demos aren't quite
finished, but it works. Here's the link:
http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html
Basically if your query string value is "myvar", you do:
var x = $.jqURL.get("myvar");
There are some other u
Yeah, that gives an idea of how to 'fake it'... I might have to pursue that
approach if I don't drop the idea all together
thanks!
Rolf
duncanh wrote:
>
> this may help - it's a page flipping animation
> http://www.sitepoint.com/blogs/2007/07/20/javascript-sprite-animation-
> using-jquery/
>
I guess that would make sense. So... I'll have to fake it or forget about it!
thanks all!
Andy Matthews-4 wrote:
>
>
> It's probably triggered via Javascript. But I'll bet that the animation
> uses
> Quartz.
>
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL P
I saw that, but I want to actually display the calendar itself, not just on
popup, but fully displayed.
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Alex Ezell
Sent: Thursday, August 30, 2007 4:40 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Looking
I think this is actually more of a problem with Javascript syntax than
it is with the cookie plugin, but any help would be much appreciated.
In particular, see this demo of the v2 of the plugin.
http://kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerStartEnd.html
It's probably triggered via Javascript. But I'll bet that the animation uses
Quartz.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of rolfsf
Sent: Thursday, August 30, 2007 4:37 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Apple dashbo
Andy,I've used datePicker[1] from Kelvin Luck to do multiple date fields on
the same page. I am still using v1 (because I am too lazy to update it and
test the new v2), but I'm sure v2 would work fine for you.
There are some cool things being done with time and date pickers that work
nicely if you
I got the impression from reading through the developer notes that it is a
javascript animation:
http://developer.apple.com/documentation/AppleApplications/Conceptual/Dashboard_ProgTopics/index.html
Choose "Widget Backs and Preferences", and scroll down to "Flipping Sides"
Perhaps I need to di
I got the impression from reading through the developer notes that it is a
javascript animation:
http://developer.apple.com/documentation/AppleApplications/Conceptual/Dashboard_ProgTopics/index.html
Choose "Widget Backs and Preferences", and scroll down to "Flipping Sides"
Perhaps I need to di
I'm working on an app which allows users to search against data in our db
using a date range (start, end).
What I need is a calendar which allows a user to select both dates, then
click submit. So I need a calendar which allows for two instances of itself
on one page.
I'm looking at jCalendar:
I actually read that before I responded, like Rey, I found myself being
distracted by your blog. Loved the "Message board etiquette for
programmers" post, so true.
On 8/30/07, Giant Jam Sandwich <[EMAIL PROTECTED]> wrote:
>
>
> Hey, thanks Benjamin!
>
> Nothing wrong with tooting your own horn.
Wow... that is almost exactly what I had in mind.
On 8/30/07, Duncan Heal <[EMAIL PROTECTED]> wrote:
>
> this may help - it's a page flipping animation
> http://www.sitepoint.com/blogs/2007/07/20/javascript-sprite-animation-using-jquery/
>
>
> Duncan
> - - - - - - - - - - - - - - - - -
> Sprocket
this may help - it's a page flipping animation
http://www.sitepoint.com/blogs/2007/07/20/javascript-sprite-animation-
using-jquery/
Duncan
- - - - - - - - - - - - - - - - -
Sprocket Web Design
www.sprocket.co.nz
- - - - - - - - - - - - - - - - -
On 31/08/2007, at 5:58 AM, rolfsf wrote:
I
I see; well ultimately you can't flip anything like that in javascript,
BUT... You may be able to achieve it thru trickery, now, I am just rambling
this off the top of my head, but what if you create four images. Image 1
was the front side and when something is clicked, a link or something, that
There was a recent flurry of emails on the list discussing a conflict
with the use of MooTools in conjunction with jQuery. When MooTools
released v1.1, they renamed their events expando to $events, thus
conflicting instantly with jQuery.
Well, Brazilian developer Alexandre Magno
(http://blo
seedy wrote:
Just as a follow up on this, it doesn't have to be overflow hidden, just any
overflow attribute. Applying the overflow forces the browser to calculate
the size of the div to see if it needs to show the scrollbar or not.
...any overflow value *other than "visible"* which is the i
I am so pleased you took the time to look closely at my project. Your
analysis is perfect, but I do have some questoins below. Some may
sound dumb because I am so new to all this.
On Aug 29, 10:48 pm, Pops <[EMAIL PROTECTED]> wrote:
> Mitch,
>
> I have to say - excellent job, very nice. I do hav
I believe this code has just been migrated from an earlier hack for Safari.
We used to just clone the event object only for Safari but now we clone it
for all browsers. The best thing that can be done to help us make sure we
don't browser sniff unless we absolutely have to is to create a new ticket
I'm not having the exact same issue, but I am having inconsistencies with
the click method.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Giant Jam Sandwich
Sent: Thursday, August 30, 2007 1:42 PM
To: jQuery (English)
Subject: [jQuery] Binding
doh!
http://www.apple.com/macosx/theater/dashboard.html
rolfsf wrote:
>
> There is a quicktime demo of the whole dashboard, and you can see the
> various animations used. About a third of the way through you'll see them
> click on the bottom right corner of a weather app and it flips over and
There is a quicktime demo of the whole dashboard, and you can see the various
animations used. About a third of the way through you'll see them click on
the bottom right corner of a weather app and it flips over and resizes
thanks,
Rolf
bmsterling wrote:
>
> Sadly I don't have a mac, is ther
> > In this case you are fixing a bug that happens to appear in one
> > browser, but why limit the fix to only that browser? What
> > if another browser based on Safari comes out but has a
> > different user agent string and isn't recognized by jQuery?
> > Wouldn't you still want the bug to be f
> -Original Message-
> From: FrankTudor [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 30, 2007 9:44 AM
> To: jQuery (English)
> Subject: [jQuery] Question about Collapse/Expand
> http://docs.jquery.com/Tutorials:Live_Examples_of_jQuery
>
> I am working with example b.
>
> The
Just as a follow up on this, it doesn't have to be overflow hidden, just any
overflow attribute. Applying the overflow forces the browser to calculate
the size of the div to see if it needs to show the scrollbar or not.
Giuliano Marcangelo wrote:
>
>
>
> On 30/08/2007, Paladin <[EMAIL PROTE
Hi all,
Is there any new built in method to get a query string value into a
var for jquery
For example this same question came up awhile ago here:
http://groups.google.com/group/jquery-en/browse_thread/thread/99e1bc29713bba37/09506175a651256e?lnk=gst&q=query+string&rnum=2#
I wasnt sure with the
Ray,
thanks.
Should be an honour to know that you will check out my works for
integrating in AjaxCfc.
Let me have your feedbacks and suggestions.
In the weeend I will end the docs for first 2 tags and will post a
fashrotator using media plugin.
Bye
Andrea
On 30 ago, 13:52, "Christopher Jordan
Christopher,
Yes it will work.
Actually the blog is hosted on MX7 and examples pages works fine.
Check it out:
http://www.andreacfm.com/examples/cfjq_tab/
http://www.andreacfm.com/examples/cfjq_popup/
Let me have your feedback.
Andrea
On 30 ago, 13:52, "Christopher Jordan" <[EMAIL PROTECTED
Turns out it was an old version of the library.
On Aug 30, 1:42 pm, Giant Jam Sandwich <[EMAIL PROTECTED]> wrote:
> I used to be able to do this:
>
> $("a").click(function(){
>alert("test");
>return false;
>
> });
>
> test
>
> It no longer works in Firefox. I read some other posts that se
On Aug 30, 2:06 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> Why fix something that isn't broken? You can play the hypothetical
> both ways without satisfaction.
I don't think so - in the case where it "isn't broken" then nothing
bad will result. The correction will not execute. In fact, it's l
Sadly I don't have a mac, is there a demo anywhere I can have a look at?
On 8/30/07, rolfsf <[EMAIL PROTECTED]> wrote:
>
>
>
> Is there an easy way to get the animation style used in the Apple
> dashboard
> widgets that flips the widget over to reveal the 'back'?
>
> Thanks for any leads or tips
>
On 8/30/07, Matt Kruse <[EMAIL PROTECTED]> wrote:
> In this case you are fixing a bug that happens to appear in one
> browser, but why limit the fix to only that browser? What if another
> browser based on Safari comes out but has a different user agent
> string and isn't recognized by jQuery? Wou
> In this case you are fixing a bug that happens to appear in one
> browser, but why limit the fix to only that browser? What if another
> browser based on Safari comes out but has a different user agent
> string and isn't recognized by jQuery? Wouldn't you still want the bug
> to be fixed? What h
In this situations, I prefer to use dimension plugin. It is quite charming
to use it.
2007/8/30, b0bd0gz <[EMAIL PROTECTED]>:
>
>
>
> Thanks for the quick reply, still getting a height value of zero I'm
> afraid,
> any other ideas?
>
> b0bd0gz
>
>
>
> Try this:
>
> $('#content').load('home.html',
Here's what I am doing currently:
setTimeout("expandMenuUsingCookie()",550);
But, I'm sure there is a better way than that. Can anyone share a
better way to run code last?
On Aug 30, 12:52 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
> The example you posted is a very specific bug in Safari and running it for
> other browsers would be incorrect.
If the bug is that the original target of events in safari can be a
text node within an element rather than the element
Andrea,
Nice idea! Will this work with all MX versions of CF as well as CF8?
Chris
On 8/30/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
> I have now set up a blog with the purpose to show up integration ways
> between cf and jQuery (basically converting jquery plug-in in easy
>
Still trying, if I comment out the $.ajax section and put an alert
after that section the code runs, but once I uncomment the page just
processes the default way. I get no errors in firebug or anything, so
not sure why it just seems to skip the function.
Hey, thanks Benjamin!
Nothing wrong with tooting your own horn. I am finding out that very,
very few developers have hands-on accessibility experience like you
mentioned. If you didn't get a chance, have a read:
http://blog.reindel.com/2007/08/29/web-site-accessibility-awareness-loses-steam/
It
I used to be able to do this:
$("a").click(function(){
alert("test");
return false;
});
test
It no longer works in Firefox. I read some other posts that seem to be
discussing the same thing, but nothing definitive. Bind does not work
either. However, if I change click to mouseover, then i
Andrea, this is VERY cool. Definitely hit me up offlist as Rob Gonda and
I are going to be updating AjaxCFC with jQuery v1.2 shortly and the
custom tags you're building could be a very nice fit.
http://www.reybango.com/index.cfm/2007/8/30/Rob-Gondas-AjaxCFC-Library-Important-News
Rey...
jQue
I agree that people like the animation effects.
I'm all for them. The problem is that if a
menu/header is still in the opening animation
process and the mouse is moved to a new
menu/header item the new menu doesn't open at all
- no matter how long one waits. That to me is a
bug.
Erin
In
In the real world, things dont always happen instantly.
A sliding door (like on Star Trek) opens with a whoosh. I am sure they
"could" have built a door "shield" that was opened instantly rather than a
whooshing door. Especially with their futuristic technology. However,
people like the whoosh.
The example you posted is a very specific bug in Safari and running it for
other browsers would be incorrect. We do feature/object checking when it is
possible.
--
Brandon Aaron
On 8/30/07, Matt Kruse <[EMAIL PROTECTED]> wrote:
>
>
> On Aug 30, 7:15 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wro
Olivier Percebois-Garve schrieb:
Will "implies" be integrated anytime soon in validate ?
Could someone please explain how implies works like? I looked at the
examples of YAV, but apart from the notion of dependencies I could
figure out how it works. I'd be happy to integrate a similar featur
Is there an easy way to get the animation style used in the Apple dashboard
widgets that flips the widget over to reveal the 'back'?
Thanks for any leads or tips
Rolf
--
View this message in context:
http://www.nabble.com/Apple-dashboard-style-animation-in-jquery--tf4355930s15494.html#a124127
On Thursday, August 30, 2007 8:46 AM Xinhao Zheng said:
> i write a hover event for div,and in the handler use ajax to request
> data.but it give me a problem:
> it do the same ajax request many times(the number is the times i hover
> the div) when the first ajax didn't finished.
I don't have an
I've used LiveHTTPHeaders to inspect XML payloads in POST requests,
since they don't show up in Firebug. You may want to give that a
shot:
http://livehttpheaders.mozdev.org/
On Aug 30, 11:22 am, ekene <[EMAIL PROTECTED]> wrote:
> $.ajax({
> contentType: 'text/xml',
> dataType:
can you implement one thing: now, to rewind all items to the last one,
i must know how much of them, substract quantity of scrolled items and
set it to the property "start". but it nedded quite frequently.
maybe it'll be good idea to make a new value to the "start" property:
"last" or something...
I'm using the cookie plugin. And, I have created 4 cookies with it
and they are named:
Expanded[1]=3
Expanded[2]=18
Expanded[3]=27
Expanded[4]=37
I also keep a count of the number of cookies that have been created
and the name of this cookie is this:
onExpandCount=4
How do I loop through the
Hi,
I have now set up a blog with the purpose to show up integration ways
between cf and jQuery (basically converting jquery plug-in in easy
reusable Custom Tags).
Any suggestion, ideas, code and so on should be really appreciate.
The blog is www.andreacfm.com
Thanks
Andrea Campolonghi
In my opinion (and only my opinion) i think that
it is kinda disturbing if we hover on one item
and immediately if we hover on another item, the
accordian doesn't open for the second item.
I think that the interface should always be
responsive to the user. If the mouse is over a
menu it shou
i write a hover event for div,and in the handler use ajax to request
data.but it give me a problem:
it do the same ajax request many times(the number is the times i hover
the div) when the first ajax didn't finished.
xinhaozheng
$.ajax({
contentType: 'text/xml',
dataType: 'html',
data:'asdfasdf2007asdf',
processData: false,
timeout: 5000,
type: 'POST',
url: 'saveXML.php',
error: function(){
alert('Error loading result from saveXML.php');
Using the Interface Plugin, I have created a "Sortable" element:
jQuery('#rank-products').Sortable();
In there I have passed params like:
handle: 'td.rank-handle'
Is it possible to reference that param? I am trying to call it in a
function later, and I would like for this to be more generalized
I notice you are running an "each" method when the "find" is looking for an
id ("#invoice"). This implies that you are looping over multiple elements
with the same id. This will mess things up as it is invalid to have
multiple elements with the same id. Try using "invoice" as a class rather
What version of jQuery are you using?
--John
On 8/30/07, Dustin Martin <[EMAIL PROTECTED]> wrote:
>
> Hello everyone! My name is Dustin and was hoping I could get a little
> help with a JQuery problem I've run into. I just started using JQuery
> and have been trying out a little AJAX when I ran
Yes! With jQuery 1.1.4 you can do:
YAHOO.util.jQuery = jQuery.noConflict(true);
--John
On 8/30/07, howa <[EMAIL PROTECTED]> wrote:
>
> Is it possible?
>
> e.g.
>
> YAHOO.util.jQuery("#test").each(...);
>
>
Is it possible?
e.g.
YAHOO.util.jQuery("#test").each(...);
On Aug 30, 7:15 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> I was wondering why jquery would not automatically do a browser sniff,
> and fall back to methods that non-supported browsers understand.
Why browser sniff at all? Why not detect for supported methods and do
what is supported.
I did have some inconsistencies after reloading a few times.
The second time. all was still well.
Third time.got a "page could not be found error" (could be on my end)
Fourth time.some links I clicked on would take me to the top of a new page
and sometimes the comments sectio
Hi
So far I have been able to make custom error boxes with the following code:
$(".error").each(function(i, n){
$formElement = $(n).next('input, select');
$offset = $formElement.offset();
Try reloading the page a few times, then click on the links again. Like I
said, it works intermittently...
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rick Faircloth
Sent: Thursday, August 30, 2007 10:28 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re:
Worked on every comment link I clicked on the homepage.
Rick
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Andy Matthews
Sent: Thursday, August 30, 2007 10:48 AM
To: [jQuery]
Subject: [jQuery] What the heck??? Click event intermittently...
On my blog user
--- Shelane <[EMAIL PROTECTED]> wrote:
>
> Actually, this has been discussed quite a bit.
>
>
http://groups.google.com/group/jquery-en/browse_thread/thread/6722e380538892b9/
>
> I did manage to get scripts working properly in IE,
> with some trick
> that John Resig told me to try. Look at th
Is it possible to execute java after an ajax .load ? I have a page where I
use .load to pull in an external page. The java code on the external page
doesn't load or fire when it loads inside the new page. Is the .load event
just for loading HTML only ? I'm very new to jquery and java in general,
I was wondering why jquery would not automatically do a browser sniff,
and fall back to methods that non-supported browsers understand.
Instead of me doing the browser checking, why doesn't jquery do this
for me?
For example, something like this within the show, or animate methods:
if ( $.browse
1 - 100 of 160 matches
Mail list logo