[jQuery] http://billwscott.com/carousel/
Hello, The Yahoo developer bill scott has developed a highly customizable plug-in to make slideshows and thumbnail sliders with pagination. Jquery wizkids: how is up to the challenge? Cheers Johan _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Collapsing row groups
Hi all, i was wondering how i could find the RowElements between two specific rows and hide them. Let me give you an example Row 1 class=HEADER Row 2 class=data Row 3 class=data Row 4 class=data Row 5 class=HEADER Row 6 class=data Row 7 class=data I would like to find the rowElements between the header class rows. When clicking on Row 1 i would like to hide rows 2,3,4 and stop the hiding at row 5 since it is a header as well. The script is used to collapse groups of rows. Thanks for your time. Cheers
[jQuery] tweenBox
Hi Everyone Some improvements that I would like to see done to the thickbox or the new tweenBox are: Be able to define the width of the box in % so that more of the width and height of the screen can be use. Ideally I would like to be able to do something like <a href="http://netvibes.com" title="http://netvibes.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">netvibes.com</a> reader. Be middle click the link that would take me to a site that has the same functionality
[jQuery] Problems with "jquery-zed" version of thickbox
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.2900.2912" name=GENERATOR></HEAD> <BODY> <DIV><FONT face=Arial size=2> <DIV><SPAN class=868454106-21072006><FONT face=Arial size=2>Hi everybody,</FONT></SPAN></DIV> <DIV><SPAN class=868454106-21072006><FONT face=Arial size=2></FONT></SPAN> </DIV> <DIV><SPAN class=868454106-21072006><FONT face=Arial size=2>I've been using the
[jQuery] $(foo).css('min-height') bug?
Since it works fine in Firefox but not Internet Explorer, I thought I'd best run it past you guys before submitting it as a jQuery bug. I wouldn't have thought it was simply because IE6 doesn't support min-/max- height & width values, because the three other than min-height seem to return the correct result. I've created a test case at: http://tinyurl.com/kaeyo Any thoughts? Best wishes, Dave Cardwell ~ http://davecardwell.co.uk/ _______________________________________________ jQuery mailing list
[jQuery] visual jquery.com
looks like www.visualjquery.com/ got a makeover. The sunset club eh? -- ||||||||||||||||||||||||||||||||||| Will Jessup c. 760 807 0850 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jQuery on Rails: Take 0.01
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=720345115-20072006><FONT face=Arial size=2>Really look forward to that. I've been progressive enhancing basic rails pages with jquery, but having it built in would be great.</FONT></SPAN></DIV> <DIV><SPAN class=720345115-20072006><FONT face=Arial size=2></FONT></SPAN> </DIV>
[jQuery] TableSorter 1.0 plugin for jQuery released
Awesome. Hurray for Christian!!! I can't want to find a project that warrants me using this. <!----------------//------ andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. andy@icglink.com 615.370.1530 x737 --------------//---------> -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of Christian Bach Sent: Thursday, July 20, 2006 9:33 AM To: discuss@jquery.com Subject: [jQuery] TableSorter 1.0 plugin for jQuery
[jQuery] animate suggestion
for the animate function it can only take in numbers which means that you have to do a parseInt(string) to get out a number. was thinking this could solve that. ///// snip snip animate: function(prop,speed,callback) { return this.queue(function(){ var i = 0; for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p ); if ( prop[p].constructor == Number ) { e.custom( e.cur(), prop[p] ); } else if ( prop[p].constructor == String) { e.custom( e.cur(), parseInt(prop[p])
[jQuery] some .get functions don't seem to be working in IE?
Okay... Without going into the whole thing, I'm getting some inconsistent behaviour from the AJAX portion of jQuery in IE only. http://www.commadelimited.com/recipes/ Click a category on the left and this function is run: function searchByCategory(cat) { $.get("includes/q.cfc?method=searchByCategory&cat=" + cat,function(result){ eval( 'var ' + result ); update('#title',r.title) update('#content',r.content); }); }; That part works fine. Next, click a recipe name and
[jQuery] Initializing form variables from JSON
Hi if I have a form already loaded in the browser e.g. <form> <input type="text" name="inp1"><br clear="all"><input type="text" name="inp2"><br clear="all"> </form> I want to be able to load the values of the form inputs by AJAX. So I can get the values as a JSON object. That's fine. But how do I now set all the values inside the form? In the form plugin (form.js) in the svn version, there is a serialize() or formdata() function. But can we do a reverse? From the in-memory hash/array, can we set
[jQuery] Serializing a subset of a form
Hi I was trying to figure out a way to serialize a part of a form which is inside a specific parent div e.g. <form name="testform"> <input name="inp1" value="val1"> <input name="inp2" value="val2"> <div id="myset"> <input name="inp3" value="val3"> <input name="inp4" value="val4"> </div><br clear="all"></form In the above, I'd like to serialize only inp3 and inp4. The current implementation of $.serialize only works on a single form element, rite? And the form element serialization code is inbuilt
[jQuery] Is there a way to return the position of an element in aJQuery collection?
> If you have a reference to an html element and you also
[jQuery] Show.Hide with same link?
Hi, I figured out to use toggle to show/hide a div using the same link (i.e. click to hide, click to show). But I'd like to use an effect; i.e. slide open/slide closed, using the same link. Can anyone point me to some sample code using this technique? Thanks, Jeff _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Is there a way to return the position of an element in a JQuery collection?
If you have a reference to an html element and you also have the results of a JQuery search that may contain that element, how can you find the index (position) of that element? (ie its position in the results) I have a simple function to do it at the moment but I'm hoping JQuery can do it. Many thanks G _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Excellent Javascript (Re-)Introduction
Hi, I saw this link somewhere on Dean Edwards site. I think its a very good read for every non-pro js programmer. After reading it, I feel to I can for example understand most of the 'magic' used by jQuery. http://simon.incutio.com/slides/2006/etech/javascript/js-tutorial.001.html A must-read (even for puppies)! -- Jörn _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jQuery on Rails: Take 0.01
Sorry, it's auto-added by the mail server - nothing I can do (other than not posting) Is it really that offensive? -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of poni Sent: 20 July 2006 16:57 To: jQuery Discussion. Subject: Re: [jQuery] jQuery on Rails: Take 0.01
[jQuery] XMLHttpRequest Case-Sensitive in IE7
http://ajaxian.com/archives/xmlhttprequest-case-sensitive-in-ie7 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Retreiving form elements.. wrong order :(
<!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.3790.2666" name=GENERATOR></HEAD> <BODY> <DIV dir=ltr align=left><SPAN class=834090912-20072006><FONT face=Arial color=#0000ff size=2>No luck with that,</FONT></SPAN></DIV> <DIV dir=ltr align=left><SPAN class=834090912-20072006><FONT face=Arial color=#0000ff size=2></FONT></SPAN> </DIV> <DIV dir=ltr align=left><SPAN class=834090912-20072006><FONT
[jQuery] Alpha testers
List, Sorry for this off topic mail, but would anyone be interested in being an alpha tester for my new WEB2.0 site? catch me on AIM "xdionysisx" Will -- ||||||||||||||||||||||||||||||||||| Will Jessup c. 760 807 0850 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Retreiving form elements.. wrong order :(
<!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.3790.2666" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=702154210-20072006><FONT face=Arial size=2>I just wrote a function to set the focus on the next input element in the document with hidden elements in mind. It took me a while but i managed it :)</FONT></SPAN></DIV> <DIV><SPAN class=702154210-20072006><FONT face=Arial size=2>However
[jQuery] Tag type
Hi everyone, I have a form with lots of different form elements like select-fields, input-fields etc. <form> <select>...</select> <input type="text" value="..." /> ... </form> Now I need a way to iterate through the form elements and execute some code, depending on their tag-type (select, input, textarea, ...), here is some pseudo-code, how it _could_ look like: $('form').child().each(function(){ var type = $(this).getType(); switch (type) { case 'select': doSomething();break; case 'input[@type=text]':
[jQuery] Select Next n Number of Elements Up To .myClass
I have a series of elements such as: <p id="abc" class="myClass"> Some data Some data Some data Some data Some data <p class="myClass"> Some data Some data Some data ... In short I want to find the next n elements up to where class equals .foo $('#abc').click(function() { $('~ p', this).not('.myClass').hide(); }); There isn't a fixed number of P elements... Cheers, -js _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] AHAH question
Hey there, Im preety new to the whole Javascript/Jquery world. (So hello everyone) I have a little issue with AJAX/AHAH. I am just building a website which will run as my portfolio. Most people that will look at it will be on broadband so I am taking the liberty to make it a bit dataheavier than usual. However, to keep the loading times quick Id like to only reload to div with the changing content - straight forward ajax ideology really. So I've got links in my menu with the class of nav and would
[jQuery] Jquery in the wild and form questions
Just launched 2 sites that use some of the jquery magic: http://www.attorneyatlaw.com and http://www.asbestoslawsuitinfo.com I would really like to use jquery on more sites, but the whole form serialization is keeping me from using it for more than simple DOM manipulation. Are there any more docs on the form plugin that I keep hearing about? I remember one user made one, but I could not get it to work at all, Im thinking it was issues between latest svn and what I had saved locally, but I couldn't
[jQuery] Flash data storage for Javascript
I'd like to develop a logging utility for JS development that would use a Flash object as data storage (vide Dojo's invention), but I don't know any AS. Dojo provides the source code to their storage unit, as does Amass, but they're very rudimentary. I would like to use have an SWF that emulates a simple filesystem for JS, or at least allows appending to existing 'files'. Logging is just one possible use, but you could also store JS code ( i.e. jQuery plug-ins), cached data, user files for offline
[jQuery] .removeClass(); Not removing classname attribute
<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] imagemap area hover firefox flicker
I'm trying to use jQuery to make an interactive imagemap... http://www.westga.edu/~www/projects/map2/ When the user puts their mouse over a building it should show a box with the name of the building. It works well in IE 6 and Safari, but it seems to flicker when using firefox on both win and mac. The issue looks like it has something to do with firefox thinking the mouse is out, when it's over both the box, and the area. Does anybody have an elegant solution to this? Thank you! -Madison _______________________________________________
[jQuery] eval?, was: One last hurdle to jQuery's AJAX usage...
> > > Basically you need to eval() that code and then take it
[jQuery] slideup and _down
I had a question of functionality for jquery. I'm sure you know about script.aculo.us's slideup & down to create the neat little slide effect to hide navigations and etc. I have it on my page ( just click About on the menu to see it in action ) I don't like how script.aculo.us is so big so I want to use jQuery but everytime I have tried to use that function of toggle show, it messes up. I am going to try again and give it one more crack to try to figure it out and see if I can get it to work, but
[jQuery] removing elements from array ?
<!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.3790.2666" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=654034614-19072006><FONT face=Arial size=2>I run the command:</FONT></SPAN></DIV> <DIV><SPAN class=654034614-19072006><FONT face=Arial size=2></FONT></SPAN> </DIV> <DIV><SPAN class=654034614-19072006><FONT face=Arial size=2> $('input').each(function(i){<BR> $('#logger').append(this
[jQuery] prototype.js - Event.findElement(event, 'LI')
<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> <!-- /* Font Definitions */ @font-face {font-family:Verdana; panose-1:2 11 6 4 3 5 4 4 2 4;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in;
[jQuery] Shouldn't this work? (parent)
<div>$("#part_nbr").parent("TD").remove();</div> <div> </div> <div>I get an error: "d is undefined on line 761"</div> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Serializing a subset of a form
<!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.2900.2912" name=GENERATOR></HEAD> <BODY> <DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><FONT face="Times New Roman"><FONT color=#000000><FONT size=3><SPAN class=764004917-19072006>> </SPAN>The current implementation of $.serialize only works</FONT></FONT></FONT></FONT></DIV> <DIV dir=ltr align=left><FONT face=Arial
[jQuery] One last hurdle to jQuery's AJAX usage...
Sweet! That works! I had to leave that last part about changing the code from r, to var r out as that chunk of js is auto-generated by a coldfusion function before the data is returned. Thanks LOADS for your help. It makes me happy that I can do everything with one library now. Viva la jQuery! <!----------------//------ andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. andy@icglink.com 615.370.1530 x737 --------------//---------> -----Original Message----- From: discuss-bounces@jquery.com
[jQuery] One last hurdle to jQuery's AJAX usage...
Ah... Eval! I saw that in another part of the ajax engine I'm using. I'll give your code a shot Michael. You rocketh. Appreciated <!----------------//------ andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. andy@icglink.com 615.370.1530 x737 --------------//---------> -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of Michael Geary Sent: Wednesday, July 19, 2006 10:43 AM To: 'jQuery Discussion.' Subject: Re:
[jQuery] One last hurdle to jQuery's AJAX usage...
> Eval! I saw that in another part of the ajax engine I'm
[jQuery] Flash data storage for Javascript
> Just I don't see any usefulness in this thing :)
[jQuery] One last hurdle to jQuery's AJAX usage...
> So anyway...I'm getting this javascript object back and I'm
[jQuery] One last hurdle to jQuery's AJAX usage...
Not sure if this message went through or not so I'll repost it once. ---------------------- Okay... I'm doing some testing in trying to replace my existing AJAX library with jQuery and I'm so close I can almost touch it. But a few things are eluding me. Here's the code I'm running: http://commadelimited.com/recipes/test.cfm At the moment, I'm returning a javascript object containing multiple hashes: Title and Content. I don't NEED to keep the results this way, but if I can then that's less code I
Next Page