[jQuery] [OT] Importing jQuery mailing list archives
Hi, This is not directly related to jQuery, but to this mailing list. Sorry for the off-topic. I'd like to know how did you moved the entire mailing list archives to Google Groups. Were the messages "re-sent" or...? I'm asking because people from another project I'm involved is considering to migrate to Google Groups and I couldn't find an "official" way to import archives from Mailman. There are topics about this in Google Groups discussion group, but no solution is given. And I knew that jQuery-en
[jQuery] Issue w/cloneNode(true) and form elements in IE 6/7...
While working on a jQuery Interface project, I came across an issue with some code using the Draggable library. It turns out in IE6 the cloneNode(true) does not properly copy the current state of all HTML elements. Checkbox, radio and select box elements all lose their current settings. I blogged some more info here: http://blog.pengoworks.com/blogger/index.cfm?action=blog:599 And here's an example: http://www.pengoworks.com/workshop/bugs/cloneNode_issue.htm (The example code uses straight DOM manipulation
[jQuery] I thought I understood threads...
Why does the following function wait until after the while loop is finished to update the #timer css? It happens in IE and Firefox - I'm (still) using jQ 1.1.2. function wait(time){ $("#timer").css("display","block"); time = time * 1000; var sleeping = true; var now = new Date(); var startingMSeconds = now.getTime(); while(sleeping){ alarm = new Date(); alarmMSeconds = alarm.getTime(); if(alarmMSeconds - startingMSeconds > time){ sleeping = false; } } } -- View this message in context: http://www.nabble.com/I-thought-I-understood-threads...-tf4096371s15494.html#a11647824
[jQuery] jQuery - form plugin
Hi, I am trying to understand the difference between AjaxForm and AjaxSubmit. There are some examples Here : http://www.malsup.com/jquery/form/#sample1 With some forms. But for each form, when I click Submit, I get on a dummy.php page with some text on it. It doesn't look like an Ajax call. Has the website some problems or maybe I didn't understand the way it works ? Thank you for any help. -- View this message in context: http://www.nabble.com/jQuery---form-plugin-tf4096402s15494.html#a11647890
[jQuery] Opacity problem, IE7, Tabs plugin
Hi folks, I'd greatly appreciate some help with an opacity problem (I think that's what it is) on a page where I'm using the tabs plugin: http://horticulture127.massey.ac.nz/degreecdays_test.asp When I move from one tab to another in IE7, the font quality breaks up. Any suggestions? Cheers, Bruce
[jQuery] Binding problems (click/submit)
<html> <body> <tt>Hello folks, I'm having difficulty rebinding both a form submit and a click function upon return of an ajax call. The onload code is ... $(document).ready(function() { $("a.gao").bind("click", function() {getAllOptions()}); var options = {dataType: 'html', before: beforeAjax,after: afterAjax}; $('#getStudentInfo').submit(function() {$(this).ajaxSubmit(options);return false; }); }); function beforeAjax(html) { $("#comments3").hide();} function afterAjax(html) {
[jQuery] strange behavior of Safari
I'll try to describe it with my poor English... When Safari starts loading a page... It looks like page has no CSS at all and it appears in default markup (just a long list of DIVs) then Safari "discovers" CSS and re-renders the page in a normal way... All this leads to annoying flicks on the page. I tried to localize this problem but found only that it somehow connected with JavaScript and modifications in DOM... If anybody encountered such a strange behavior of Safari?.. Maybe this is a known problem
[jQuery] jQuery form plugin questions
Hello everyone, I'm a bit of a noob to this whole AJAX thing so you'll have to forgive me. I've setup a blog, using jQuery the comments are added to mysql using this form plugin (http://www.malsup.com/jquery/form/#getting- started). Posting the comments work great, I was even able to add in a confirmation saying "Thank you for posting". My dilemma is showing the new comment on the page without refreshing. Here is the page to test it: (http://www.iphoneappr.com/index.php?post=48). I was thinking I
[jQuery] Tabs plugin in floated container
Happy Friday 13th all ;-) Just mocking up a new interface and attempting to use floated <div>s for layout. The right div of two floated next two each other needs to be a tabbed container...but the tabs plugin floats the <li> elements then does a clear:both afterwards which breaks my layout. I have a feeling I'll be playing with it all afternoon to try and change this, but can anyone assist and point me in the right direction? I like the positioning as it is but just need it to not use floats... Thanks!
[jQuery] parsing xml
my xml looks something like: <response> <message> <bio>the bio</bio> <voted>the votes</voted> </message> <message> <bio>another bio</bio> <voted>likewise, another vote</voted> </message> </response> I'm new to jquery. I'd like to place these in an array so I can access votes/bio easily and separately. at the moment, jquery is returning it like this: "the bioanother bio" . Any help is much appreciated. Thanks.
[jQuery] AutoCompleter - Adding second occurrence
I've gotten the AutoCompleter by Jörn Zaefferer at http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete working for one textbox on my page. I'm now trying to add another. The query works fine and it displays the data in the popup, but I get an error when I select something. I'm trying to take some of the returned data and fill in some fields. It's in relation to the txtCompany textbox (the txtItem textbox is what is working fine and filling in other data). I'm still very new with JQuery
[jQuery] Plugin idea : server language integrator
Hello everyone, There are a few server language integration scripts but as far as i checked the code they are restrictive, only allowing the actions/plugins they have defined in their scripts. I was thinking about an integrator script (php) that would get the methods from the version and plugins that are used, and cache it for speedier access, so that you could produce code like : $jQuery = new jQuery('jquery,jqModal','jscache'); $jQuery->jqel('#test')->jqact('show'); $jQuery->jsif('$("#test2").size()
[jQuery] About APPEND
Dear all, I am getting crazy with a small piece of code/ I have a DIV inside a Form like this: <form id="mainForm" action="register-askPP.php" method="post"> <table border="0" cellpadding="2" cellspacing="0" width="95%"> <div id="formContents"></div> <tr><td> <input type="submit" value="Submit" class="button"> <input type="reset" value="Clear" class="button"> </td></tr> </table> </form> In some events I would like to add some HTML to the DIV. I use: $('#formContents').append(personFields); where
[jQuery] Announce: jFeed - jQuery RSS/ATOM feed parser plugin
Hi All, jFeed is a new jQuery plugin which parses RSS/ATOM feeds. It uses jQuery's built-in AJAX functions to get the XML and basic selectors to parse it. More info on my blog: http://www.hovinne.com/blog/index.php/2007/07/15/132-jfeed-jquery-rss-atom-feed-parser-plugin Download: http://www.hovinne.com/dev/jquery/jfeed/jquery.jfeed.tar.gz Any feedback is welcome. Cheers, jf
[jQuery] syntax errors in jquery-1.1.3.1.js
I'm fairly new to javascript so this may or may not be important. One of the posts today led me to the jslint.js program. Running it with rhino on jquery-1.1.3.1.js reports many, many errors. It quit at line 275 complaining of 'too many errors'. Most of the errors were (caused by) missing semicolons. When it aborted, among the last few errors were: Lint at line 250 character 14: Use '!==' to compare with 'undefined'. t.length != undefined && (!t.nodeName || t.nodeName == "FORM") ? Lint at line 259
[jQuery] Plugin Annoucements and Additions to Plugin Library
<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=Generator content="Microsoft Word 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;}
[jQuery] load method nor getting new data on IE7
The following function works as it's supposed to on FF but IE7 is evidently caching the results because I always get the same quotation back. How can I force IE7 to do what I tell it to? $(function() {$("#quote").click(function(){ $(this).fadeOut(); $(this).load("getquote.php"); $(this).fadeIn(); }); }); -- "There will never be a really free and enlightened State, until the State comes to recognize the individual as a higher and independent power, from which all its own power and authority are derived,
[jQuery] CSS drop-shadow for clueTip - help requested
<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>After I posted the clueTip beta, I realized that something had regressed and the pngFix code wasn't working properly to get the drop-shadow effect working in IE6. </DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>I've worked that part out by, starting with the pngFix code in Jörn's tooltip plugin (thanks!) and, among other things,
[jQuery] jQuery Logo
Does anyone have the jQuery logo as a vector graphic? I gotta give props to John R. and his boyz on my next site and am sticking a logo somewhere on the page. I like to avoid working from working from bitmaps whenever possible. On a sidenote, I realized just now that the Devo "hemlet" has 4 tiers and the jQuery logo has 3. I assume this is by design to avoid legal repercussions? Kudos to your killer work on the library. You guys shifted my development paradigm.
[jQuery] Binding events to elements created by a plugin, from within the plugin.
I am moving some code into a plugin and am stuck on something that is probably very simple. My plugin creates new DOM nodes, but once they are created I need to bind events to them. I'm not seeing an obvious way to do the binding from within the plugin itself. I'd like to just do this: $('foo').myplugin(); ...but right now I have to do this: $('foo').myplugin(); bindStuff(); I'm using the recommended "return this.each(function(){ ...})" structure for my plugin, so if I call the binding function from
[jQuery] Moving the COLUMNS of a table around
Hi, I was trying to move around the columns of a table. I noticed that you can specify styles for columns using the <col> html construct.<br clear="all"> I tried this... <script language="javascript"> $(document).ready(function() { $("#switch").click(function() { $("#2").hide(); }); }); </script> <table border="1"> <col id="1" width="20px" /> <col id="2" width="20px" /> <col id="3" width="20px" /> <col id="4" width="20px" /> <col id="5" width="20px" /> <col
[jQuery] Getting user agent stats with jQuery...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.6000.16481" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=421492916-16072007><FONT face=Arial size=2>My company currently uses a product called BrowserHawk, a combination of Javascript and Java files, to get a set of user data which we then store in our database. Currently this data set includes Flash player version, OS, Browser
[jQuery] news ticker not displaying inline with H2 tag
I'm trying to get the texotela news ticker ( http://www.texotela.co.uk/code/jquery/newsticker/ ) to display inline with an h2 tag. I have my h2 tag set to display:inline but the ticker still drops down. Anyone have any ideas on how to fix this? Here's my current file: http://echolux.net/ticker/newsTest.html . Thanks!
[jQuery] onclick ?
Hi everybody, I'm new to Jquery and iI'm just looking for a little tip. Well, i'm trying to call JQueryBlockUI trough flash, and to do that I need to have a JS function like function test2() { question=document.getElementById('question'); jQuery.blockUI(question,{ width: '430px', height: '380px',top:'30%', left:'30%' }); } Allright, this is working, i'm calling a div with a new flash movie, but if i close the div with this: $('#no').click(function() { $.unblockUI(); alert(getFlashMovieObject('moteur').GetVariable('aron'));
[jQuery] unordered list each li a different background
Hi What is the best way to give a different class to each item in an unordered list just a for each and then apply a new class or is there something better Armand
[jQuery] ContextMenu plugin r2 released!
Version r2 of the ContextMenu plugin has been released. ContextMenu is a lightweight jQuery plugin that lets you selectively override the browser's right-click menu with a custom one of your own. You can download it here: http://www.trendskitchens.co.nz/jquery/contextmenu/ ContextMenu is now truly context-sensitive, allowing you to enable/ disable individual items depending on the context, or you can choose dynamically to hide the menu. Changes in this version: * $.contextMenu.defaults() now works
[jQuery] How do you delay for a few seconds
I have mastered many of the incredible features of jquery today for the first time, but for the life of me I can't figure out how in the heck you can get a div to display for a fixed amount of time then just hide itself. Sorry for such a stupid question.
[jQuery] OT: Devo hat?
This has been bothering me for a while :) Does jQuery logo represent the Devo hat? http://www.devo-obsesso.com/html/12in-pgs/main/foc_japan-pro.html -- Mika Tuupola http://www.appelsiini.net/~tuupola/
[jQuery] [ANNOUNCE] jQuery Maps 1.1
Hey folks, On friday I released my new plugin, jQuery Google Maps Application. I decided that name was a bit to long-winded, and I didn't want Google coming back and asking for their name to be removed at a later date - so I have reduced the name down to jQuery Maps. It also has a new Google Code page: http://code.google.com/p/jmaps/ However, the name was the only thing that was downgraded! In this new release (1.1) I have added lots of new functionality which you can see in action here: http://webrocket.ulmb.com/dev/
[jQuery] Autocomplete Plugin Issue With IE6
I am using Jörn's Autocomplete alpha plugin (not from the svn repository) along with jquery 1.1.3.1 and am having some problems in IE6 related to selected options from the drop downs. The autocomplete control works fine if I use the down arrow to navigate to a choice. However, if I use the mouse, I am seeing erratic behavior, where IE6 triggers and the error "Object Required" with the line number. Sometimes this happens just mousing over the selection and sometimes it happens when selecting (double-clicking)
[jQuery] InnerFade-Plugin: Text jumps from left to the center
Hi, i would like to use the fantastic InnerFade Plugin from http://medienfreunde.com/lab/innerfade/ http://medienfreunde.com/lab/innerfade/ I want to change DIV-Containers. A Link in this container is centerd with text-align: center. But with Firefox the Link/Text starts with every Fade on the left and jumps then to the center, not nice. In IE everything works fine. I tried many things (Links as Blick-Elem, margin: 0 auto etc.), but nothing works. Can anybody give me a hint? Or another possibility
[jQuery] Flash-alike menu animation? Can this be done with jQuery?
I have this menu which is just a few menu-items placed next to eachother like this: HOME - CONTACT - NEWS Beneath the menu I have a little image, kind of like an arrow. I want the arrow to slide from left to right from menu-item to menu- item, depending on the item i'm hovering over. So let's say I'm at the Home page. The little arrow is pointing at "HOME". I'm hovering over "NEWS" so now the arrow slides over to the right to point at the word "HOME". If I switch my mouse to hover over the "CONTACT"
[jQuery] NEWS: 5 Minute Book Review: "Learning jQuery"
Jim Priest does an excellent job of reviewing the first couple of chapter's of Karl Swedberg's newly released jQuery book, "Learning jQuery : Better Interaction Design and Web Development with Simple JavaScript Techniques" My favorite quote from his review is: "Glancing at the Table of Contents - I’m happy to note there are no basic introductory ‘HTML/Javascript’ chapters (no fluff!) you dive right into a simple jQuery script where you manipulate some CSS." That's what I would expect from a book
[jQuery] announce: JS code packer as PHP5 command-line app
Hi, all! Nicolas Martin once released a PHP5-based JS packer (http:// joliclic.free.fr/php/javascript-packer/en/), a port of Dean Edwards' packer code (http://dean.edwards.name/packer/). Here is a derivative of Nicolas' code: http://wanderinghorse.net/computing/javascript/#packers that version extends the original by allowing input from stdin and output to stdout (the original one required passing two file names, which is not "The Unix Way"). Assuming you're in a Unix-like environment, it can be
[jQuery] misunderstanding of .text()?
Hiya! i'm attempting to load a text file via .load() and insert it into a separate element by fetching the loaded text via text(). Load is working fine for me. e.g.: $ ('<pre>').appendTo( '#SplitterPaneBottom').load('jquery.splitter.js'); no problem - that appends a PRE to #SplitterPaneBotton and populates it. However, i would prefer to internally fetch the text, a-la: var txt = $('<pre>').load('jquery.splitter.js').text(); (i've also tried .html()) But that is always returning an empty string, whereas
[jQuery] JTicker Plugin problem
Hi, I try to use JTicker, RSS feed, But I can't display my RSS feed. I can notice by adding some alerts debuging that the javascript stops here : FillSlide: function() { var Item, TickerHTML, Title, URL, Desc; $("#" + options.TickerID).empty(); options.contentcounter++; alert(options.contentcounter); alert(options.dataXML); var nb = $("item", options.dataXML).length; <--- javascript stops here alert(nb); if
[jQuery] [ANNOUNCE]: clueTip Plugin Beta
<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; ">Hey everyone,<DIV><BR class="khtml-block-placeholder"></DIV><DIV>Just thought I'd let you all know that I (finally) posted a blog entry announcing the official beta version of the clueTip plugin:</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><A href="http://www.learningjquery.com/2007/07/cluetip-plugin-beta">http://www.learningjquery.com/2007/07/cluetip-plugin-beta</A></DIV><DIV><BR
[jQuery] what do I have wrong?
The following code doesn't work. There are no errors reported but nothing happens. What have I misunderstood and therefore gotten wrong? Am I even on the right track to do what I want? The dimensions.js and cluetip.js plugins have been loaded. // have: <td>1420</td> // want: <td><a class="ct" href="oneclub.php?club=1420" rel="oneclub.php?club=1420">1420</a></td> $(function() { // get the first cell of each table row $("tr+td").each(function(){ var clubnumber = $(this).text() $(this).empty() var url
[jQuery] jquery innerfade crashing 2.0.4
Innerfade is causing Safari 2.0.4 to crash. I tried using the same files used on the innerfade demo, but it still crashes. It works just fine on FF, IE, and Safari 3 beta. I've also tried to roll back to an older version of jquery and it still doesn't work. Has anybody had a similar problem?
[jQuery] ANNOUNCE: Call for Articles for Visual jQuery Magazine
Back in September of last year, jQuery team member Yehuda Katz published the first issue Visual jQuery Magazine (http://www.visualjquery.com/magazine/). The online magazine was a huge success with great content and received a very positive response from the jQuery community. Yehuda is now pushing forward with issue #2 and is actively soliciting contributions from the community. The articles can vary from beginner to advance topics as well as overall size. If you're interested in contributing to the
Next Page