[jQuery] iFrame manual reload required in Firefox
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=953204820-31012007><FONT face=Arial size=2>Sorry for the repost, but i did not have any feedback. Can you please have a look at this request? I think it's a possible bug in jquery</FONT></SPAN></DIV> <DIV><SPAN class=953204820-31012007><FONT face=Arial size=2>---</FONT></SPAN></DIV>
[jQuery] Problem with [@src
Hello folks, I seem to have a problem with a selector, which i have turned every way i could think of with no results, so i'm asking for your advice. I had this html (pared down): <div id="rapide" class="res"> <img src="itineraires/rapide_on.gif" width="540" height="459" border="0" alt="Le plus rapide" usemap="#rapide_Map" /> </div> <div id="corres" class="res"> <img src="itineraires/corres_off.gif" alt="Le moins de correspondances" width="540" height="66" /> </div> <div id="ferre" class="res">
[jQuery] Collapsing all panels initially in accordion
Hi, I am looking for a way to emulate the 'alwaysHide' option in mootools/accordion in jQuery/Interface http://docs.mootools.net/files/Plugins/Accordion-js.html http://interface.eyecon.ro/docs/accordion Any suggestions ? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] show/hide div based on radio buttons/select options
I'm trying to show/hide 2 different divs based on which choice a user has selected (could be radio buttons or a select) <div id="selectionPane"> <label for="reports">reports </label><input name="type" id="reports" type="radio" value="true" /> <label for="files"> files </label><input name="type" id="files" type="radio" value="true" /> </div> <div id="reportsPane">Reports options here</div> <div id="filesPane">Files options here</div> So, if the user selects "files", then #reportsPane is hidden
[jQuery] Some Firefox search plugins I made
Greetings all, Being new to jQuery (just implemented it yesterday), I have done quite a bit of searching for information on various jQuery topics, and to help me to that end I created some Firefox search plugins (for that little box in the upper-right corner)....I hope you guys don't mind! I searched online for some before I made them but couldn't find any, so.. yeah :) I made 3: Google site:<a href="http://jquery.com">jquery.com</a> (main, discuss, blog) Google site:<a href="http://docs.jquery.com">docs.jquery.com</a>
[jQuery] position clearing ala Shaun Inman
I've been reading through Transcending CSS by Andy Clarke, and he mentions using Shaun Inman's clearance method (http://shauninman.com/post/heap/2006/05/22/clearance_position_inline_absolute) to position footers when using absolute positioning for layout. Since I'm already using jQuery for a number of other things (they are all quite simple - I'm still a novice at JS), I was wondering if a jQuery version of his script would be smaller/faster or if I ought to just use his script in addition to the
[jQuery] Tabs plugin update: Support for (unobtrusive) Ajax
All. I have just updated the Tabs plugin, which now supports loading tab content via Ajax. As you would expect I did that in an unobtrusive manner. The only thing you need to do is to build the following HTML with links to existing ressources (from where the content gets loaded): <div id="container"> <ul> <li><a href="ahah_1.html">Content 1</a></li> <li><a href="ahah_2.html">Content 2</a></li> <li><a href="ahah_3.html">Content 3</a></li> </ul> </div> And use the remote option: $('#container').tabs({remote:
[jQuery] remote ajax with jquery...
I casually mentioned 'remote ajax' in another thread... I thought I'd show a demo of it... very simple! it's used to watch woot.com while they are doing rapid sales! <?xml version="1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title> Wootster </title> <script type="text/javascript" src="/js/jquery.js"></script> <script
[jQuery] FaviconLinkMarker 1.0 stable out now
Hi all, i have now release a stable Version. Have a look at: http://olaf-bosch.de/bugs/jquery/faviconlinkmarker/index.html Problems are: 1. i found no way to check Favicon exist, in IMG variant are in IE a placeholder image to see 2. Favicon with width 32px, in CSS variant looks not good Thanks for your support here. -- Viele Grüße, Olaf ------------------------------- olaf.bosch@t-online.de http://olaf-bosch.de www.akitafreund.de ------------------------------- _______________________________________________
[jQuery] iFrame manual reload required in Firefox
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=953204820-31012007><FONT face=Arial size=2>hello,</FONT></SPAN></DIV> <DIV><SPAN class=953204820-31012007><FONT face=Arial size=2></FONT></SPAN> </DIV> <DIV><SPAN class=953204820-31012007><FONT face=Arial size=2>i'm trying to help someone on the thickbox forum, but the issue
[jQuery] Looking for Interface.Sortables examples
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:verdana, helvetica, sans-serif;font-size:10pt"><div>Anyone got some good, maybe more advanced, Sortables examples that illustrate how all the different methods and properties can be used? Thanks - wayde </div></div></body></html>_______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] blockUI/unblockUI: onUnload
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=609294011-31012007><FONT face=Arial size=2>hello,</FONT></SPAN></DIV> <DIV><SPAN class=609294011-31012007><FONT face=Arial size=2></FONT></SPAN> </DIV> <DIV><SPAN class=609294011-31012007><FONT face=Arial size=2>i would like to know how to display the blockUI modal message
[jQuery] What is the best way to replace an element using JQuery?
Despite having used JQuery for some time and also written plugins, I've never discovered a good way to replace one element with another. Just need something like: $("#myElement").replaceWith("<div>new element</div>") Depending on the circumstances I usually find I have to resort to DOM methods or if myElement has no siblings then I can use .parent().html("..."). Any thoughts? Am I missing something?! Cheers George -- View this message in context: http://www.nabble.com/What-is-the-best-way-to-replace-an-element-using-JQuery--tf3148907.html#a8729470
[jQuery] make a div disappear after 2seconds?
Hi, should be a simple question but its been doing my heading for 1 day now!! how can i make a div disappear after 2 seconds ? thanks T -- View this message in context: http://www.nabble.com/make-a-div-disappear-after-2seconds--tf3077754.html#a8550789 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Suggestions for Class building and Namespace Libraries -Somewhat OT
Hi, I know this is mostly offtopic for jquery, but since I've started using the great library I've been pushing myself to improve my javascript code technique. I am sure using jquery has inspired me to be a better javascript programmer and I am sure many of you feeling the same way. Two things I'd really like are a good system for creating classes with clear inheritance and support for java-style interfaces. The second would be support for namespaces and a way to include modules as needed. Some of
[jQuery] SVN is Broken
./dist/jquery.js Built Building ./dist/jquery.lite.js - Removing ScriptDoc from ./dist/jquery.js js: "build/build/lite.js", line 1: Couldn't open file "../jquerybuild/js/writeFile.js". js: "build/build/lite.js", line 6: uncaught JavaScript runtime exception: ReferenceError: "writeFile" is not defined. make: *** [dist/jquery.lite.js] Error 3 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Bind triggers function
<!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.5730.11" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=406560101-31012007><FONT face=Tahoma>Hello,</FONT></SPAN></DIV> <DIV><SPAN class=406560101-31012007><FONT face=Tahoma></FONT></SPAN> </DIV> <DIV><SPAN class=406560101-31012007><FONT face=Tahoma>I am writing a jquery script. It works fine in firefox, but in IE when I bind
[jQuery] Data falling out of Container Div
Hey all, I'm having some trouble with a getting a div to size correctly. In some instances, the results that I'm getting back are being displayed outside of the container div. Steps to see the issue: 1) Go to http://dev.healthybuyersclub.com/reyship.cfm 2) Click on Go button and you should get 1 result back 3) Change state to Florida and zipcode to 33065 4) Click on Go button and you should get 3 results back but you'll see that the results are outside of the main container div The JS code can be
[jQuery] Acess DOM object properties
How do I access dollarified object's DOM properties without using each()? That is, let's say, I have a select on my page: <select id="myselect"> <option value="1">1</option> <option value="2">2</option> </select> How can I access its selectedIndex property without resorting to $("myselect").each( function(){ this.selectedIndex } ); ? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] how to know whole page content is loaded?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=390283913-31012007><FONT face=Verdana>Hello again,</FONT></SPAN></DIV> <DIV><SPAN class=390283913-31012007><FONT face=Verdana></FONT></SPAN> </DIV> <DIV><SPAN class=390283913-31012007><FONT face=Verdana>Any idea how i can trigger a function when every element on the page has
[jQuery] return this.each
Hi, I am new to jQuery and have just started working with it, got to say it's brilliant! However I have had a bit of trouble getting my head around the tutorials especially when it comes to making a plugin. It doesn't help having only a basic understanding of Javascript! Anyway I cracked most of it today, but I still don't understand the significance of the subject aka: //return this.each(function() { this.html(""); this.hover(pause,resume); //}); Now the above works without the return this.each
[jQuery] string as var in JQuery
I'm just getting started with JQuery. When I tried to implement a small function I encountered the following: there is contruction in my HTML <li><span id="navline_next">next</span></li> а) function StateHandler(is_next) { var span_id=[is_next ? "#navline_next" : "#navline_prev"]; if(jQuery(span_id).parent().is("li")) { **** always false b) function StateHandler(span_id) { if(jQuery(span_id).parent().is("li")) { **** true if I call this function as StateHandler("#navline_next") What's wrong with
[jQuery] JQuery Live Search Database Content example
Hi folks, i'd like to know if there are any example or plugin for JQuery live search with server side(database) content. In plugins page haves a link for a plugin builded by Halmat Ferello. But that link doesn't have any information about. Cheers _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Can't use attr to set style of an element on IE6
Hello, I can't seem to use <span style="font-weight: bold;">attr </span>to set the style of an element on IE6. Is this an expected behaviour? Why? <span style="font-family: courier new,monospace;"><html> </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> <head></span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> <script type="text/javascript" src="jquery.js"></script></span><br style="font-family:
[jQuery] Basic Sound Alert System
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=390260911-31012007><FONT face=Arial size=2>Just found this also: <A href="http://www.flashsoundapi.com/?preload=true">http://www.flashsoundapi.com/?preload=true</A></FONT></SPAN></DIV> <DIV><FONT face=Arial size=2></FONT> </DIV> <DIV><FONT face=Arial size=2></FONT> </DIV>
[jQuery] Scrolling in Opera?
Has anyone else had the problem of Opera not scrolling when using the ScrollTo in interface? (By the way, Stefan and Paul, thanks for your work on interface - I use it a lot) My page has a lot of #xxx and anchors and I wanted to use the ScrollToAnchors method in interface. Since the method looks for elements to scroll to (not named anchors), I made this (small) change to the method: ScrollToAnchors : function(speed, axis, easing) { return this.each( function() {
[jQuery] Safari nightly builds for testing
For those who want to test jQuery against development versions of WebKit: http://nightly.webkit.org/ http://developer.apple.com/opensource/internet/nightlywebkit.html -- Mika Tuupola http://www.appelsiini.net/~tuupola/ _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Fwd : simple selector with ID doesn't work anymore
<font size=2 face="sans-serif">Hi,</font> <font size=2 face="sans-serif">I've been looking for a solution regarding my problem... first, it appears I hadn't the right files when doing my tests with different versions. So it works fine with the packed version 1.0.4 . But when I replace it with the packed v1.1.1, the code </font> <font size=2 face="sans-serif"> </font><font size=2 face="Courier New">alert(</font><font size=2 color=#8100ff face="Courier New">' div : '</font><font size=2 face="Courier
[jQuery] OT: jQuery Powered Farecast takes $12M more VC
<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] [New Plugin] jqModal -- Minimalist Modaling with jQuery
I am aware that there's a few modal window plugins for jQ -- here's some in memory; Thickbox, Tweenbox, Greybox, and Gavin's jquery-modalcontent. I figured we needed another one ;) What I wanted was something extremely lightweight and flexible. jqModal weighs in at a whopping 3.2k and has no dependencies. After the churn through Dean's compressor (http://javascriptcompressor.com) it came to 2.2k (but there's a syntax error =[ ). jqModal supports; + event preservation + CSS styled/positioned overlays
[jQuery] Interface Sortable CSS help needed
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:verdana, helvetica, sans-serif;font-size:10pt"><div>The attached page represents the look I want ... but for some reason, when I drag the last tab on the right and move it right ... the UI gets all jacked up. In IE7 things are much worse as the tab disappears entirely. I'm sure its something with my CSS ... but not sure what. Any ideas? thanks - wayde </div></div></body></html>_______________________________________________
[jQuery] .trigger() behaviour - repost
Hi there I posted about this a while ago but never got a response I could understand (probably my fault!). My question relates to why using .trigger(), which as of 1.1 is supposed to trigger the browser's default behaviour, gives a different result to performing the triggered event manually. An example: If I click (manually) on a checkbox, the checkbox will be checked and then the attached handler will be executed. This is great - just what you would expect. But if I do .trigger(#myCheckbox) things
[jQuery] Basic Sound Alert System
Hey All, I need a basic sound notification method triggered by JS. Anyone who knows a good system with the least code size? Cheers, Danial _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Interface Tooltip problem
Hello all, I am looking for a good tooltip library. I like the look and feel of the Interface one but there's a big problem with it - when I hover over something on say the right edge of the screen where I want the tooltip to appear, most of it goes off the edge of the screen. The same is true if it's on the left of the screen and the position is set to left. Any thoughts on how it can be fixed? Also, I made a small modification to the tooltip that enabled it to load external ajax content - my solution
[jQuery] Bug in $() in jQuery v1.1.1?
I've got the following test case that performs quite a bit different between v1.0.4 and v1.1.1. In the code below v1.0.4 returns an undefined object for both test cases--which certainly seems like it would be the expected behavior (I mean if an element doesn't exist, it shouldn't be returned.) Also, the statements should for all intents and purposes return the exact same results. However, in v1.1.1 I you get radically different results. The first case returns the context element--which definitely
[jQuery] dynamic id's for show/hide toggle?
I'm just getting started with jquery so bear with me :) I'm working on displaying a dynamic list generated with ColdFusion. I found the "slicker show/hide" tutorial and have that working - but need to show/hide elements on each row of my list. Right now it works - but when I click my show/hide link - ALL the hidden elements are displayed :) So I'm guessing I need jquery to respond to a dynamically generated ID... <a href="#" id="myID-#currentRow#>show/hide</a> <div id="details-#currentRow#>Lorem
[jQuery] Checking length/size of hash object
Hi All, is there a native, or jQuery way to check the size/length of a hash object? For instance to check the length of an array, you would do something like: var x = [1,2]; x.length; // is 2 But how would I check this: var x = {n:2,m:4}; Thanks in advance :) -- View this message in context: http://www.nabble.com/Checking-length-size-of-hash-object-tf3144960.html#a8718115 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com
[jQuery] Bind causes function to fire IE
Hello, This is my first time posting and I will start off by saying that I am not a very good Javascript programmer. I have some code that work fine in Firefox. It makes a answer appear below a question on an FAQ page. The html structure is that there is an H5 tag with a class of question followed by a div tag with a class of answer. Clicking on the H5 tag will make the div below slideDown and highlight (using Interface Animate color). When the HTML page loads the questions and answers are there
[jQuery] New Plugin: keepRatio
Hi all, sometimes there may be the need for having Flash movies being 100% wide while keeping it's ratio. That means they should not only change the width but also the height on window resize. Because I needed it, I've created a simple plugin for that: http://stilbuero.de/jquery/ratio/ Just put in your flash movie and put in the correct values for width and height, like: <div id="demo"> <object ... width="300" height="200"> ... </object> </div> $('#demo').keepRatio(); http://stilbuero.de/jquery/ratio/
[jQuery] new plugin: comet client
The new hipness is comet (new for me, @ least), & this plugin will take care of the inconsistencies between browser capability for streaming. - For IE, it uses the ihtmldocument2/iframe hack, as used with gtalk & described in http://alex.dojotoolkit.org/?p=538 - Mozilla & Opera use xmlhttprequest, with slightly different implementations. - Safari & Konqueror (webkit) currently is not supported, due to lack of support for xmlhttpreqest's interactive readystate. I have not tried to adjust the iframe
Next Page