[jQuery] [Slightly OT] Nabble Blocked
I usually start every day using Nabble to browse through the latest posts to the JQuery discussion list. A couple of days ago, though, I was surprised to find that my work's WebSense filter had blocked it as a "malicious web site." I talked with the administrators and they initially claimed that I shouldn't be blocked from anything (a perk of being the Webmaster), but then claimed that there might not be a way for them to bypass the block. What could possibly be on Nabble that got it blocked? Anyone
jQuery 1.1.1 Released
Hi Everyone - The bug fix release for 1.1 is now ready for all to use. There were a lot of weird behaviors that were discovered post-1.1 that needed to be remedied sooner, rather than later. If you were having any difficulties with the 1.1 release, please try this new release to see if your problems were solved. It is highly recommended that you upgrade. As always, if you have any questions or concerns with new release, please feel free to discuss it here. If you think you've spotted a bug, please
[jQuery] Slide up/down via Interface is jittery - ideas?
Hi folks, I'm using the slide effect in the Interface library, and am having a bit of a problem. Rather than create a test page, how about look at the real one? http://www.anime-planet.com/users/userentry2.php?id=1 For testing purposes I set up two of the icons to do what I needed (final design won't be like this, of course). Click the AIM icon first. Tag of importance on that icon: onClick="$('#messengers').SlideInUp(500); Click the MSN icon next for this tag; $('#messengers').SlideOutUp(500); Notice
[jQuery] jQuery Easing plugin
This has now been updated for jQuery 1.1 Thanks to new functionality within 1.1 this is now pretty much just a list of functions for easing. Thanks jQuery team for doing what I was doing, only better, and with less code. Saves a great deal of maintenance for me. Anyway, grab it here: http://gsgd.co.uk/sandbox/jquery.easing.php Cheers, George. -- View this message in context: http://www.nabble.com/jQuery-Easing-plugin-tf3026880.html#a8409114 Sent from the JQuery mailing list archive at Nabble.com.
[jQuery] safari, jQuery and a confused newbie
<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; ">Hi,<DIV><BR class="khtml-block-placeholder"></DIV><DIV>What am I doing wrong?</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>Intention: Show a form</DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre"> </SPAN>Click the submit button, create a record in a database with the posted data, return the data to the same div.</DIV><DIV><SPAN class="Apple-tab-span" style="white-space:pre">
[jQuery] Newbee-question: slide left/right
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <meta name=Generator content="Microsoft Word 12 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);}
[jQuery] dropdown sections - code for beginners
JQ Beginners... (like me) With lots of superior help from the wizards in this discussion board, I have managed to code a simple "dropdown section" script using jQuery that might serve as a starter if you are just getting your teeth into jQuery. Its useful for Ajax FAQs and stuff. By no means complex, but shows the power of some of the core methods of jQuery... elegance unparallelled. The code began life as a cumbersome, ugly monster in Dojo, but has been refined to 7 lines of code since moving to
[jQuery] jquery + tinymce .... scope problem?
I'm trying to do something that should be fairly simple... dynamically create a textframe (in my example below, via .html(), but you can imagine the textframe in question coming in via ajax [well, ajah]) and then apply the tinyMCE stuff to the textarea to make it a rich editor. http://media.subdue.com/tiny_headache/ now, there seems to be some odd scope problem, since the initial tinyMCE object seems to exist and accepts the init call, but after that the errors start piling on. I'm seeing no mention
[jQuery] Kelvin's Scroll Pane
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"> <head> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <meta name=ProgId content=Word.Document> <meta name=Generator content="Microsoft Word 10"> <meta name=Originator content="Microsoft Word 10"> <link rel=File-List href="cid:filelist.xml@01C73D9E.F7DEA840"> <!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:DoNotRelyOnCSS/> </o:OfficeDocumentSettings>
[jQuery] introduction and textarea counter / limiter question
Hi, My name is Bjorn Wijers and I recently started with jQuery. I have tried other libs as well, but this seems to be the one best suited for me. Thanks to John and all the other contributors for making jQuery available! I started out with a small project which is based on this example [1] by Peter-Paul Koch of Quirksmode [2] fame. In his example he created a text counter for textarea's so one can inform a user when he/she has typed the maximum amount of characters in a textarea. The maximum amount
[jQuery] $(select, xml) issue in 1.1?
The following selector works in 1.04 but not in 1.1: $("viewentry/entrydata[@columnnumber='0']", xml) Link with jQuery 1.04: http://64.26.160.80/jQueryTest.nsf/jQuery104?OpenForm Link with jQuery 1.1 (Rev: 1073): http://64.26.160.80/jQueryTest.nsf/jQuery11?OpenForm Link to an XML file that $.ajax() function retrieves: http://64.26.160.80/jQueryTest.nsf/Users?ReadViewEntries Another thing... code (with 1.04) works in IE6, IE7 & Opera 9, but does not work in Firefox 2.0.0.1. Not sure if I'm doing something
[jQuery] Issue in 1.1 with $(selector, context)?
Hi, I'm just updating my datePicker plugin to work with jQuery 1.1 and seem to have run into problems with the following snippet: jQuery(s, ele) (where s is a string like 'input' and ele is a jQuery object). It seems that in jQuery 1.1 (Rev: 1073) the context (ele) is ignored. If ele is a DOM element then it seems to work fine... Has anyone else run into this? Cheers, Kelvin _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] IDs are a crutch for the weak. Classes are for the strong.
Don't get me wrong, I use an occasional id. But ids are over used. Sure jQuery selects a single element faster with an id than with a class, but that's only the beginning of a good chain of jquery! With a properly formatted html/xml, you can deal with the ancestors, children, siblings, prev, next, and filter. That's why xml, xsl, xquery, xpath, and jQuery are cool technologies (in my mind) and text files and last millennium javascript programs are not. The reason I'm posting this is I made a reference
[jQuery] Kelvin's Scroll Pane
Hey Guys, I have been working on a project that could make use of Kelvin's scroll pane. I have made a few enhancements: * Keyboard support * Separate top/middle/bottom elements for the dragger * "activated" class for track when scrolling or key action is possible This means that you can now have a pretty scrollbar that has a separate activated/deactivated state. Take a look at: <a href="http://www.visualjquery.com/scroll_pane/index.htm">http://www.visualjquery.com/scroll_pane/index.htm </a> It's
[jQuery] Kelvin's Scroll Pane
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:st1="urn:schemas-microsoft-com:office:smarttags" xmlns="http://www.w3.org/TR/REC-html40"> <head> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <meta name=ProgId content=Word.Document> <meta name=Generator content="Microsoft Word 10"> <meta name=Originator content="Microsoft Word 10"> <link rel=File-List href="cid:filelist.xml@01C73D61.AE2F83A0"> <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
[jQuery] Effect function runs twice
Hi all. I'm new to jQuery so bare with me if I'm a bit slow. As the subject implies I'm havning trouble with the function hide because it runs twice when I would think I've only set it to run once. Here's the code in question: $(document).ready(function(){ // #region Deregister $("#lblDeregister").hide("slow"); $("#chkDeregister").bind("mouseover", function(){ $("#lblDeregister").show("fast"); }), $("#txtName").bind("mouseover", function(){
[jQuery] toggleClass Voodoo
A question about toggleClass... everything below works, so its not a problem as such... http://www.g-raff.co.uk/jquery/basic.html I added a statement to the code to change the appearance of headings that had been clicked, and back again when they were clicked a second time. function init() { // set first section to be open on launch $("a.open_btn:eq(0)").toggleClass("down_state"); // now iterate through <a class="open_btn"> objects to add click methods to open corresponding <div class="section">
[jQuery] Calling webservices via WSDL SOAP
Search for this, but couldn't find an answer. How do call webservices in Jquery via a wsdl file? -- View this message in context: http://www.nabble.com/Calling-webservices-via-WSDL-SOAP-tf3031039.html#a8421717 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jquery menu and lightbox don't work :(
lightbox doesn't work with the menu script for some reason. can anyone help perhaps. it's the simple menu with hiding features. i watched the video tutorial and did it. but i added lightbox in each submenu link. if anyone can help that'd be great :) the file is in the attachment http://www.nabble.com/file/5747/learn.html learn.html -tuan -- View this message in context: http://www.nabble.com/jquery-menu-and-lightbox-don%27t-work-%3A%28-tf3047638.html#a8471627 Sent from the JQuery mailing list archive
[jQuery] (no subject)
<html> <head> <style> P { margin:0px; padding:0px } body { FONT-SIZE: 10pt; FONT-FAMILY:Tahoma } </style> </head> <body>lightbox doesn't work with menu script. in the attachment is the file. can anyone help perhaps. it's the simple menu with hiding features. i watched the video tutorial and did it. but i added lightbox in each submenu link. if anyone can help that'd be great :) -tuan <br /><hr />Try amazing new 3D maps <a href='http://maps.live.com/?wip=51' target='_new'>Check it out!</a></body>
[jQuery] Dynamically Loaded Scripts in IE 7 - Problems Found and Lessons Learned
Dear all, I have spent quite a bit of time trying to make a dynamically-loaded page's scripts work in IE 7 and Firefox and would like to share with you the lessons I have learnt. You might find my discoveries obvious or trivial, but I am still going to post them in case they are useful to someone: I have a page (host page) that is loading another page (guest page) into a div via the .load() ajax function. The host page's <head> element contains links to all the project's JavaScript files (including
[jQuery] Sliding glitch
<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; ">Hi All,<DIV><BR class="khtml-block-placeholder"></DIV><DIV>I have searched and searched for an answer to this, but am at a loss - wondered if anyone could possibly have a look at the following. Having got into jQuery yesterday, I thought I'd jump straight in and think about using it for the holding page of a charity I'm doing a site for.</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>I'm
[jQuery] Interface Scroll To
I have a a scrollable <div>. I have that when click I would like to scroll to a point with in the <div>. I've downloaded Interface as it's "ScrollTo" function is perfect for what I want to do. However, I cannot figure out how to get it to scroll to a point contained within the scrollable <div>. I cannot find an example that shows this capability. This code... $("div#about").ScrollTo(5000); ... will scroll the document (browser) to the <div id="about">. In my page, <div id="about"> is a child of the
[jQuery] Beginner's Tutorial: AJAX + select boxes
Hi there, I've written a tutorial for people that are new to jQuery and want to see an (just one) example of how jQuery can simplify code. The tutorial also includes quick bits on AJAX and JSON. http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-ajax/ Any feedback would be appreciated. Thanks, Remy. -- View this message in context: http://www.nabble.com/Beginner%27s-Tutorial%3A-AJAX-%2B-select-boxes-tf3046473.html#a8468088 Sent from the JQuery mailing list archive at Nabble.com.
[jQuery] Sliding Glitch
<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; ">Sorry - forgot to post the URL<DIV><BR class="khtml-block-placeholder"></DIV><DIV><A href="http://www.g-raff.co.uk/jquery/basic.html">http://www.g-raff.co.uk/jquery/basic.html</A></DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>Thanks</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>SJ<BR><DIV> <SPAN class="Apple-style-span" style="border-collapse: separate; border-spacing:
[jQuery] Test whether element is undergoing animation?
<!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"> <font size="-1"><font face="Helvetica, Arial, sans-serif">Hi all I'm doing a sort of accordion effect on some elements. When one element is clicked to open (eg, element B), i specify that all other :visible elements should close before opening the clicked element. This works fine, but the animation is
[jQuery] How does one add children to a DOM element using jQuery?
I'm slightly confused. How does one add children to a DOM element using jQuery? There are append*, prepend*, insert* methods, but none of them seem to actually add a child *inside* a jQuery/DOM element. Why do I need this? I need to create a list inside a div from some data that comes, say, from an AJAX response. How do I do that? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] "THE" List of Sites Using jQuery
As promised, I've compiled the list of sites using jQuery and have posted them up to the site. You can see the full list here: http://docs.jquery.com/Sites_Using_jQuery I've done my best to get everyone that sent me submissions. If I've missed someone, please don't hesitate to buzz me and I'll add your site in. Also, if I've made any mistakes on a site listing, please let me know and I'll get it corrected ASAP. Thanks again for all of the submissions. Rey... _______________________________________________
[jQuery] Crossbrowser innerHeight / resize listener?
Hi there, I am atm trying to let my js code automagically adjust an iframes height on window resize. Now I got the following: $(window).resize( function() { var y = window.innerHeight - 100; $(#myIFrame).attr("height", y); }); Within firefox it works like a charme, but for IE i need an other attribute. So I tried to avoid a browser check by using $(window).resize( function() { y = $(document).attr("height"); // changed only this one $(#myIFrame).attr("height", y); }); which works too... in some way.
[jQuery] Autocomplete iframe causing security notice in IE over https
Whenever I tried using Autocomplete over https with IE 6, I would get a security message upon first entering a query. This was caused by the iframe being created in the background, or more specifically the fact that the iframe had no src set. The only solution I've found to work is creating a blank file and pointing the src to it like this: // we put a styled iframe behind the calendar so HTML SELECT elements don't show through //$results.append(document.createElement('iframe')); // original code
[jQuery] IE bug
i've tried my website in two versions of IE (6,7) and both dont show, at one point it told me line "28" was the problem, but IE doesnt show the file name, how ever now i'm simply getting a blank page, with no error/alerts nothing. As if it never tried to view my page. to view the webpage, the url is below: <a href="http://81.98.42.243/grup7/index.php">http://81.98.42.243/grup7/index.php</a><br clear="all"> Hope someone can help me fix this, i'm not sure wether its jQuery, or my javascript. Thanks.
[jQuery] .size() to test if something exists
Currently my code looks something like this: if ($('#warningmsg').size()) highlightWarningMsg(); Is that the "correct" way of testing if a jQuery object contains anything? -- Peter Bengtsson, work www.fry-it.com home www.peterbe.com hobby www.issuetrackerproduct.com _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jQuery fix to IE's lack of 'max-width' CSS support??
IE5/6 do not support CSS 'max-width'. I love JQuery, and I wonder if there is a way jQuery can help. Does anyone know of a jQuery fix to IE's lack of 'max-width'? Cheers, -Tony -- View this message in context: http://www.nabble.com/jQuery-fix-to-IE%27s-lack-of-%27max-width%27-CSS-support---tf3025554.html#a8405344 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] $.ajax, XML and '&' problem
Whenever one of my xml files have some data in it that contains an '&', for example <tag> keyboard & mouse </tag>, the $.ajax call comes back empty. I tried 1.04 and 1.1 and they both behave the same. Is there a way around this, or is it a bug? -- View this message in context: http://www.nabble.com/%24.ajax%2C-XML-and-%27-%27-problem-tf3041573.html#a8454626 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com
[jQuery] [Slightly OT] Nabble Blocked
same effect observed here, can't raise any fuss though... -----Original Message----- From: Jason Levine <jasonlevine@yahoo.com> Date: Friday, Jan 19, 2007 9:49 am Subject: [jQuery] [Slightly OT] Nabble Blocked To: jQuery Discussion <discuss@jquery.com>Reply-To: "jQuery Discussion." <discuss@jquery.com> I usually start every day using Nabble to browse through the latest posts to the JQuery discussion list. A couple of days ago, though, I was surprised to find that my work's WebSense filter had blocked
[jQuery] Slow Selector... What should I do?
<!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"> <font size="-1"><font face="Courier New, Courier, monospace">Hi gang, I've got a for loop in which I have jQuery select a different DOM element for each iteration. The code I've got that selects the element is: FlexCell = $("td[@dateValue=" + ShiftDate + "]"); So far, it's taking about three seconds
[jQuery] ID of parent
<html> <body> Hi folks, Not a new question to this list, I know, but I'm having difficulty in getting the ID of a parent. From the examples on Nabble, I've tried <tt>var ej = $("#sText").parent().attr("id"); </tt>and various renditions on the them, but the best I get reported is [object Object]. I'd appreciate a pointer to the solution. Thanks, Bruce</body> </html> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Deserialize plugin with jQuery 1.1
I have been using the deserialize plugin to fill forms with JSON. But it doesn't work properly with jQuery 1.1 Here are two test pages: This page <http://www.2minuteexplainer.com/test/deserializeMe.html> uses an older version of jQuery (1.0, I think) and deserializes data into its forms as it should. On this page <http://www.2minuteexplainer.com/test/deserializeMe_1_1.html> which is the same except for the version of jQuery it loads, the data is deserialized according to the field names -- but without
[jQuery] Detect browser close event
How can i detect browser close event? I've tried something like: $(window).unload( function(){ alert("close"); //stop event return false; } ); Alert appears, but event continues... Thx!<br clear="all"> -- Unai Martinez <a href="mailto:unai.martinez@gmail.com">unai.martinez@gmail.com</a> <a href="http://helusinfa.blogspot.com">http://helusinfa.blogspot.com</a> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Editinplace and WYSIWYG
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"> <head> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <meta name=Generator content="Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0cm; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link,
Next Page