[jQuery] 'jQuery not defined' errors. Possible jQuery bug? Plaintive cry for help.
Hi jQuistadors! I am getting errors to the tune of the 'jQuery is not defined - jquery.1.1.2.js line 89' (but also sometimes lines 152, 153, 156, 690, 1813) on my Blush site when moving from page to page (never on manual reload). I have tried everything I can think of to narrow it down and the errors are generated when my Superfish menu (the 'over' and 'out' local functions) attaches functions to elements on hover. Makes no difference if the Superfish plugin is called on load or ready. As soon as
[jQuery] enhanced suckerfish-style menu plugin
Hi jQuerolians, I'd like to offer up my new "superfish" plugin for feedback. Basically, it takes an existing pure CSS dropdown menu and adds the following features: - suckerfish-style hover support for IE6. The class added is 'sfHover' by default but can be changed via the options object. - timed delay on mouseout to be more forgiving of mouse-piloting errors. Default is 400 milliseconds but can be changed via the options object. - animation of sub-menu reveal. uses a fadeIn by default but can be
[jQuery] Ok... one last effort to make this work... help!
Two broad suggestions: First, get familiar with Firebug; in addition to just js errors its messages will alert you to 404 errors (which you would have caused by calling a file in the wrong folder) as well as 500 errors (which are the result of CF errors) and save you a lot of time wondering why ajax isn't working. Second, poke through the tutorials on jquery.com, which explain the basics and will turn you on to the possibilities. Now back to your question, assuming you're like me and develop in iterations,
[jQuery] Ok... one last effort to make this work... help!
Rick, with modifications below this works for me. If you need to make it more abstract (i.e., for more than one text input) you can start from here and add a piece at a time--I always find it easier to debug using a functioning version to start rather than starting from errors and working backwards... Hope it helps convince you to stick with jQuery -- after a short learning curve it makes life SO much simpler! paul HTML doc: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head>
[jQuery] Calling all CF'ers... et al...
Wow, CF 4.5? That's the version I learned on--you're really old school! I'm not sure the best way to implement what json.cfc does without the cfc--or even without user defined functions which came around in version 5.0--but you can look at it and maybe just pull the functionality you need out of the cfc -- http://www.epiphantastic.com/cfjson/. I don't know about that submitHandler function--as I said I'm new to jQuery and it doesn't look like what I've done in the past, but it may be another route
[jQuery] Need to validate single form field...
Hi, all... How would I modify this code to pass the value of a single form field called "Principal" to my .cfm validation page? This code was written to gather all the form fields of a form into a single group of variables, "Params".. would I still use "Param" to represent the value of the form field, "Principal"? function ValidatePrincipal(){ var Params = {}; $("input:text").each(function(){ Params[$(this).attr("name")] = $(this).val(); }); // "post" the form. The Params object mimics form fields
[jQuery] I made an online jukebox in jQuery
http://lab.audunsson.info/jukebox/ This will be deployed on a python music database in the future - at the moment nothing works besides the client code. This is my first real go at Javascript and jQuery. Read the quick-pool instructions to see it at work. I've used jQuery plugins for the hard work. The code is very slow and I'm probably doing something very silly. Please let me know if you see any chance at making it faster. -- View this message in context: http://www.nabble.com/I-made-an-online-jukebox-in-jQuery-tf3399206.html#a9465371
[jQuery] Inifinite loop in IE
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <div class="moz-text-html" lang="x-western"> <font face="Trebuchet MS">Hi Guys, I've got a simple form with checkboxes. When someone checks the 'Other' checkbox, a new checkbox is appended to the end of the list, so the user can add as many "Other' fields as they like (code is below). I've created a function
[jQuery] looking for popup messenger style
hey im looking for popup window that will open like msn messenger when user has going online or sending a message... and will disappear after 5 secounds or somthing, anyone knows about somthing like that? -- View this message in context: http://www.nabble.com/looking-for-popup-messenger-style-tf3399168.html#a9465265 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Combining Jquery and prototype /scriptaculous
is that possible/recommended to use both scripts on same page? they can integrate nicely? anyone tried ? -- View this message in context: http://www.nabble.com/Combining-Jquery-and-prototype--scriptaculous-tf3398974.html#a9464591 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Here is another nice plugin idea
If anyone wanted an idea for a jQuery plugin to write .... http://www.scbr.com/docs/products/dhtmlxGrid/samples/10000/index.html I think we have most if not all the infrastructure in existing plugins, but making it into a widget that you can easily drop on a page would be cool. -Steve _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Has anybody run into this?
Hi, all.. I've been working on Jorn's Validation plug-in and have just about got everything working perfectly for one particular form and I asked my wife to fill out the form and test the validation. She's got Google toolbar on her computer. When the validation kicked in, instead of my messages showing above the form fields, Google's line of something like "Google toolbar can automatically fill in these fields for you...". So now in that case Google's info was overriding my validation responses.
[jQuery] jQuery newbies?
http://jszen.blogspot.com/2007/03/mark-of-n00b.html -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Jörn Zaefferer Sent: Tuesday, March 13, 2007 4:23 PM To: jQuery Discussion. Subject: [jQuery] jQuery newbies? Hi folks, the infamous ppk wrote in his blog: "I've learnt one other trick for distinguishing newbies and pros: ask them the difference between |this| and |self|. Usually people who just claim to be excellent scripters don't know
[jQuery] is there a simple function to swap two classes?
Is there something like a swapClass function that will toggle between two classes? Or do I need to toggle between functions that addClass and removeClass? Thanks -- View this message in context: http://www.nabble.com/is-there-a-simple-function-to-swap-two-classes--tf3397695.html#a9460455 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] forms validation error divs - help
hey. ive tried to change the error div instad of <label class="error"></label> to <span class="error></span> last time i got an answer that saies to put <label for="a">title</label> <input id="a" ........> <label for="a">error</label> its doesnt make sense ... here is the code: <label for='MyForm1nicknameInputfield'> nickname1 <em>*</em></label><input name='nickname' type='text' id='MyForm1nicknameInputfield' value='am' maxlength='45'/><label class="error" for="nickname"></label> var v = $("#MyForm1").validate({
[jQuery] Jquery, Thickbox, and tracking scripts
I am trying to use jQuery and thick box to replace my existing popups. The one thing is that on these popups, I have tracking scripts that are pointed to outside domains and it seems to cause my javascript to error out saying uncaught exception: Permission denied to call method XMLHttpRequest.open I see from everywhere after googling that this is from trying to pull in content from another domain but really I'm not doing that I'm just pulling in another page from my server, which has tracking scripts
[jQuery] Edit in place feedback needed
I just put up a new release of jEditable. Main new things are support for selects and possibility to style input element via style or css class. You can check example usage from my blog: http://www.appelsiini.net/~tuupola/382/in-place-editing-with-selects I would like to get some feedback on experimental feature. In addition to url address it is also possible to give function as the target where edited content is sent to. This function can do additional processing of data. Validating, transforming
[jQuery] Reference to the element that triggered the event
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1250"> <META content="MSHTML 6.00.2900.3059" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=093401600-13032007><FONT face=Arial size=2>Sorry if this is a really thick question, but I've hunted for over an hour on the website/Google/anywhere to find this and am getting nowhere.....</FONT></SPAN></DIV> <DIV><SPAN class=093401600-13032007><FONT face=Arial size=2></FONT></SPAN> </DIV>
[jQuery] Ajax POST removing spaces from inputs
<HTML > <HEAD> <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-16"> <META content="MSHTML 6.00.2900.2963" name=GENERATOR></HEAD> <BODY > <DIV> <TABLE CELLSPACING="0" CELLPADDING="0" BORDER="0"><!-- Letter Heading --> <TBODY> <TR> <TD><!-- Left margin --> </TD> <TD> <DIV><SPAN class=760041014-13032007><FONT face="Trebuchet MS" size=2>HI all,</FONT></SPAN></DIV> <DIV><SPAN class=760041014-13032007><FONT face="Trebuchet
[jQuery] Why jQuery Effects doesn't work after load ajax data?
I believe you have to reattach the animate call after the AJAX load. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of JQuery - SimDigital Sent: Tuesday, March 13, 2007 3:14 PM To: jQuery Discussion. Subject: [jQuery] Why jQuery Effects doesn't work after load ajax data? I send POST params to another script and when it bring back, the effects doesn't work. My code: >> index.php << etc... $(".business").click(function(){ $(".info").slideDown("fast");
[jQuery] Why IE hangs with this code? (Newbie to jQuery)
<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; ">Please,<DIV>can someone tell me why IE hangs when executing this code?</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>$(document).ready(</DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre"> </SPAN> function(){</DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre"> </SPAN> <SPAN class="Apple-tab-span" style="white-space:pre"> </SPAN>$(window).resize(</DIV><DIV><SPAN
[jQuery] Hide All Except One (tabs)
Hello, An implementation of tabs using jquery. * http://enure.net/dev/hide-all-except-one/ (demo) * http://enure.net/dev/hide-all-except-one/hideAllExcept.js (js) I think it's pretty simple. Just 15 lines... Any feedback is appreciated. best, Charles _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Accordian Initial click
I have finally started to address some of my behavioral code in an attempt to clean it all up and jQuerify it.... I was using the nice accordian plugin but since I wanted the effect to wait until my ajax response has returned before sliding down, I had to hack it up a bit. I basically just took the working stuff out of the jqueryaccordian.js file. Here is my work in progress: var idsource; //this is for the accordion function: $(document).ready(function() { $("dt").click(function(){
[jQuery] NEWS: jQuery-Powered FlickrCash on Ajaxian
Hrmmm... Worked for me in IE7. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Rick Faircloth Sent: Tuesday, March 13, 2007 11:46 AM To: 'jQuery Discussion.' Subject: Re: [jQuery] NEWS: jQuery-Powered FlickrCash on Ajaxian Well, rats! IE 7 kept telling me it couldn't open the FlickrCash site. Rick -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Andy Matthews Sent: Tuesday, March
[jQuery] Checkbox unticked
I have a list of checkboxes in a form, some ticked some not. I use .post to send information to the server. How can I force the checkbox information to be sent even if it is unchecked? I need a generic solution. Thanks, Peter _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Plugin: clickMenu v0.1.2
Hi all, I've just released a new version of my click-type dropdown menu plugin. Most noticable should be the speed gain, due to some changes in the traversing routines. Hopefully it has less bugs, too. You can take a look at it here: http://p.sohei.org/ Please provide feedback and report any issues you may have. I'd appreciate it. Thanks, /rw _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] ajax- demo
Hi Renato.. The app I'm considering can't use a proxy server on the 'current' domain. The issue I'm trying to solve is similar to the 'passport' app from microsoft awhile ago. I'm considering how to allow a central app/process act as a login/validation server, allowing other sites to verify that a user is who/what he claims to be. For this to work, I'm envisioning that there has to be a way for a a client site, to be able to interface/communicate with a central server/service... Thoughts/comments
[jQuery] jquery.flash express install
hi, found a bug in the jquery flash plugin when using the express install feature. ie uses the activex control so for ie MMplayerType should be 'ActiveX' and for other browsers 'Plugin'. currently it was plugin for all browsers so it didn't work properly in ie.. and i think (but i'm not sure) that it has to write the object tag for all of this to properly work (i'm not sure since i've overwritten the flash.transform function to write the object tag for ie and haven't tried this without it).. dennis.
[jQuery] ajax- demo
hi.... i'm trying to find a good ajax mailing list, or at least someone i can talk to who might be able to shed light on how to acomplish what i'm trying to create... i know this is a javascript list, but figured i'd post here to try to find either an ajax list, or perhaps someone who can help with my issue. i'm trying to get my hands around how to create an ajax function within a webpage. +---------------------+ | | <<<<<< test webapp running on | +---------+ | server1 +------>>> | test | | ajax
[jQuery] Reference to the element that triggered the event(Karl Rudd)
Many thanks (and to Brian and Aaron for their answers too). Perfect. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Karl Rudd Sent: 13 March 2007 09:06 To: jQuery Discussion. Subject: Re: [jQuery] Reference to the element that triggered the event(Karl Rudd) Aaah, :) That's a different kettle of fish. You'll want to look at the event's "target" member. If we use your "pseudo-HTML" and this code: $(".selectable").click( function(e) { alert(
[jQuery] Bug: event binding / unbinding. help!
Sorry for all the info, but the bug submission website isn't working and I really need help on this one! It seems that when the click handler is being run usually, it's called by 'onclick()'. The time when it is run twice (in Firefox at least) the first time is called by onclick() which is called by handle() - a jQuery function. The second call is as normal. What is this handle() function and why is it explicitly calling my function? --rob
[jQuery] JQuery and DOM functions
<html> <head> <style> P { margin:0px; padding:0px } body { FONT-SIZE: 10pt; FONT-FAMILY:Tahoma } </style> </head> <body>Greetings,<BR> <BR> before explaining my problem, I must advise you that I'm a beginner in Javascript, DOM and everything around it. I currently continue a web app that uses DOM so I'm learning at the same time.<BR> <BR> My problem is that I got incompatibility problem with JQuery and DOM. Let me explain a bit more...<BR> <BR> I use the ThickBox function into my webapp to display
[jQuery] Please add a basic debug function to the jQuery core...
I would like to be able to dump the contents of the current selector to the console using $"#myselector").debug() without loading a plugin. Something as simple as the following would work, though if you devs have some ideas on how to make it more useful I'm sure it would be welcomed, especially by new users: jQuery.fn.debug = function() { console.log(this); return this; } Long chains that include callbacks with anonymous functions make it difficult to use console.log($()).
[jQuery] NEWS: jQuery-Powered FlickrCash on Ajaxian
BEAUTIFUL! The toolbar at the top has transparency and looks awesome over images. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Rey Bango Sent: Tuesday, March 13, 2007 10:14 AM To: jQuery Discussion. Subject: [jQuery] NEWS: jQuery-Powered FlickrCash on Ajaxian Hey guys, Jesse Skinner's FlickrCash site got some nice press over at Ajaxian: http://ajaxian.com/archives/flickrcash-view-lots-of-flickr-images Be sure to check out the site and
[jQuery] Site owner of Four51.com Please Contact Me
Will the person or owner of http://www.four51.com/ please contact me offlist? I need some more info on your site submission to the jQuery project. Rey... -- BrightLight Development, LLC. 954-775-1111 (o) 954-600-2726 (c) rey@iambright.com http://www.iambright.com _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Bug: event binding / unbinding. help!
Hmm slightly more info. I spotted the obvious potential stupidity, which was that I wasn't returning false, so of course it ended my click handler, spotted the new one and ran that, etc... Adding 'return false;' to the end makes Firefox run test4.1, test4.1, test4.2 then toggle as expected. IE however runs test4.1, then the 2nd iteration it continuously switches between test4.2 and test4.1 without ending the handler chain at all. Removing the 'onclick' attribute and setting the handler with .click()
[jQuery] Bug: event binding / unbinding. help!
Further to my last email regarding unbind("foo") not being able to remove events set in the HTML "onfoo" attribute, is another problem which is harder to work around. Using two functions to handle the click event for a button, each function swapping the handler to the other. (Ignore that this can be done with toggle(), this is a simplified test script.) Behaviour is different in Firefox2.0.0.2 and IE6.0. In FF, the test runs as follows for each click: 1. alerts "tested 4.1" as expected 2. alerts
[jQuery] Retrieve content from element using AJAX?
Is it possible to retrieve specific content from another page, rather than the whole page when using AJAX? What I'm trying to do is make a greasemonkey script (with jQuery loaded of course) that gets text from another page on a site (same domain) and displays it in a div. This is the node path of the element I'm trying to get on the other page: html > body > p > table > tbody > tr > td .news > span So I would like to do something like this: $.get("page.html", { $('td.news span').text(); } ); ...but
[jQuery] Calling all CF'ers... et al...
Hi, guys... I usually do all my validation using CF, by submitting a form back to the page it's on, however, I thought I'd give jQuery a crack at validation. While it works fine for the functions that are built-in, they are somewhat limited in function and I quickly get lost in a lot of code when it comes to custom validation, such as validating and reformatting dollar values for processing. What I'm wondering is if I can use jQuery validation, such as Jorn's Validation plug-in, which I've been working
[jQuery] Fastest selector for searching a single table column?
In my ongoing quest to master jQuery I had an itch to write a table filtering mechanism. I'm going for speed and elegance here so I want this to work fast enough to bind to a keyup event without bogging down even on long tables. Using DOM coding if I wanted to search the 3rd column only I would loop over oTable.rows[i].cells[2] to find the values. jQuery's selectors are pretty generalized, so I'm wondering if there is a jQuery selector that is equally efficient. $("td:nth-child(3)", "#mytbody#")
Next Page