[jQuery] Replacing a string - why doesn't this work?

2008-02-13 Thread Bruce MacKay
Can someone tell me/show me what I'm doing wrong here please? I'm duplicating a fieldset that contains an input form. However, within this fieldset lies the string: a href=# onclick=showImageList(x);. ... where (x) is the zero-based number of the fieldsets in the overall form. So, for

[jQuery] Re: Replacing a string - why doesn't this work?

2008-02-13 Thread andrea varnier
On 13 Feb, 09:05, Bruce MacKay [EMAIL PROTECTED] wrote: s=clonedRow; var myString = 'showImageList'+iRowID; var myString2 = 'showImageList'+iNewID; var myString3 = s.replace(myString,myString2); The error message I get is s.replace is not a function. I

[jQuery] Re: Trouble applying .show() to descendants

2008-02-13 Thread andrea varnier
On 13 Feb, 01:11, Nick P [EMAIL PROTECTED] wrote: The trouble comes when I try to append this cloned block to the end of the table. If I just do: blockCopy.appendTo([EMAIL PROTECTED]:resources] tbody:first); It appends the clone correctly, but the hidden fields are still hidden. not

[jQuery] Re: each() without the last element?

2008-02-13 Thread andrea varnier
On 13 Feb, 10:37, howa [EMAIL PROTECTED] wrote: Hello, I want to loop thru each elements with the each() function, except I want to skip the last element, are there simple method? hi, I would exclude the last item directly within the selector $('#elements').not(':last').each(function(){

[jQuery] each() without the last element?

2008-02-13 Thread howa
Hello, I want to loop thru each elements with the each() function, except I want to skip the last element, are there simple method? Thanks,

[jQuery] Re: Replacing a string - why doesn't this work?

2008-02-13 Thread Bruce MacKay
Thank you Andrea for the solution - I'd never have gotten there. Cheers, Bruce At 10:05 p.m. 13/02/2008, you wrote: On 13 Feb, 09:05, Bruce MacKay [EMAIL PROTECTED] wrote: s=clonedRow; var myString = 'showImageList'+iRowID; var myString2 =

[jQuery] Re: Selecting Descendents of This

2008-02-13 Thread Gordon
Try $('ul', this) On Feb 12, 10:14 pm, studiobl [EMAIL PROTECTED] wrote: I'm having trouble selecting descendents of this So, this works to initially hide uls: $(.treeHeader ul).toggle(); But this doesn't work to toggle them: $(.treeHeader).click(function(){ $(this + ul).toggle(); });

[jQuery] [validate] custom submit action

2008-02-13 Thread Josoroma
If i have a custom css toolbar in a form called confirm that doesn't use a normal submit button like: input value=Register type=submit Instead i need to use the following css-link-button to check the validate before submit: div class=buttonsa href=javascript:{} class=positive

[jQuery] treating DOM elements as spreadsheet cells : does a plugin like this exist?

2008-02-13 Thread Dreftymac
I am wondering if there is a jQuery plugin that allows the developer to apply and obtain function results by using page elements as individual cells. In order to understand what I am talking about, consider a spreadsheet application such as msft Excel. In a typical spreadsheet, you can specify

[jQuery] Re: controlling li-items with unique IDs and trigger corresponding DIVs

2008-02-13 Thread Jannik
First off, Klaus Hartl's approach is very gracefull, so I'd go with a model like that. This incorporates his code: $('#menu li').hover( function (){ $('#' + this.id.replace('link', 'div')).show(); }, function (){ $('div.page').hide();

[jQuery] Wrapping Contiguous Elements

2008-02-13 Thread Ron Hall
I have HTML code that looks like this: input type=radio name=my_button id=my_button value=Yes / label for=my_buttonYes/label And I need to wrap all of it in SPAN tags. Like this: spaninput type=radio name=my_button id=my_button value=Yes / label for=my_buttonYes/label/span I tried to use

[jQuery] textArea select text.

2008-02-13 Thread poncz
How do I mark the text in a textArea as selected? In DOM it would be document.getElementById(textAreaElm).select(); But is does not work in jquery. Please help,

[jQuery] Re: clock pick in ajax loaded form - ie error

2008-02-13 Thread pedalpete
Thanks Josh, I've edited the page to remove the positioning. Not sure why I added that in, but I think it had things working better. I removed that bit and loaded it up to the same page. I'm still amazingly puzzled at how the alert doesn't trigger. I've moved the function call up to above the

[jQuery] Re: question on determining scrollTop delta after onscroll

2008-02-13 Thread edward
Thanks for the quick reply Karl. I am aware of scrollTop. When the onscroll event fires, I can read scrollTop and determine how many pixels the browser has moved the scroll bar, but I can't determine is how many pixels the browser will move the scrollbar when the user hits arrow up/down. I need

[jQuery] Re: Feed history/remote

2008-02-13 Thread frizzle
Ok, too bad. Maybe it can lead me into the right direction, by digging into your script... It seems to be the best support for history in Ajax yet... Thanks, Frizzle. On Feb 12, 11:22 pm, Klaus Hartl [EMAIL PROTECTED] wrote: Hi Frizzle, I'm sorry to say that stuff like that is not supported...

[jQuery] Re: Selecting Descendents of This

2008-02-13 Thread J Moore
does this work? $(this).find('ul').toggle(); On Feb 12, 5:14 pm, studiobl [EMAIL PROTECTED] wrote: I'm having trouble selecting descendents of this So, this works to initially hide uls: $(.treeHeader ul).toggle(); But this doesn't work to toggle them: $(.treeHeader).click(function(){

[jQuery] Re: onclick to page

2008-02-13 Thread Michael
*Bump*

[jQuery] Re: Release: Validation plugin 1.2.1

2008-02-13 Thread Rufio
Hi Jorn I wanted to know why we would use class names such as: class={required:true,email:true} when the following will work perfectly and allows for easier class manipulation (ie when making certain fields optional depending on which submit button you press): class=required email Does this

[jQuery] Re: jQuery Image Swap Works in FF, not IE

2008-02-13 Thread demeyer
Bump. Any ideas? (Sorry for the dupe post, BTW) On Feb 12, 3:23 pm, Derek M. [EMAIL PROTECTED] wrote: Hi all, I have a little jQuery function that toggles a window on click and changes the background image of a span (to toggle an up/down arrow). It works fine in FF, but in IE, it is

[jQuery] Re: IE/FF Memory Leak

2008-02-13 Thread optimalcapacity
I am observing the memory buildup via the Windows Task Manager. On Feb 11, 7:24 pm, J Moore [EMAIL PROTECTED] wrote: How are you measuringmemoryleaks? -j On Feb 11, 10:16 am, optimalcapacity [EMAIL PROTECTED] wrote: I am a newbie to jQuery so this may be a simple answer... My goal in

[jQuery] Superfish animation problem in ie

2008-02-13 Thread bennyboy79
Hi, i recently came across Superfish and i think its amazing. i am however having a problem with the opacity:show animation in ie. it works fine in ff but when i try my menu in ie7, the right border and top menu item of the selected drop down menu item appear after the rest of the menu when

[jQuery] Re: IE/FF Memory Leak

2008-02-13 Thread optimalcapacity
I am monitoring the memory increase on both IE (IEXPLORE.exe) and Firefox (firefox.exe) via the Windows Task Manager. On Feb 11, 7:24 pm, J Moore [EMAIL PROTECTED] wrote: How are you measuringmemoryleaks? -j On Feb 11, 10:16 am, optimalcapacity [EMAIL PROTECTED] wrote: I am a newbie to

[jQuery] Form POST method does not work!

2008-02-13 Thread dunnil
Hello folks, In one of my forms, I have a wired problem, it does not post the form data to the rails from what I see in log file. It works locally but not after deployment to the server. (Using Ruby on Rails) All of other forms work but not this one. Here is my form code: % form_for(@book) do

[jQuery] About jQuery.attr(type,value)

2008-02-13 Thread wwwiori
Dear Team, I have a question that how can I modify the attribute using jQuery. For example: There have a element: input id=changeType type=checkbox value=has changed and now I would like to change the type to button, following code is my tried on IE7 and Firefox 2.02 on jQuery 1.2.3 and

[jQuery] Textual display of Current sort order

2008-02-13 Thread sjg
I have just started modifying my pages to use Tablesorter which is a vast improvement over my old method. So far I have everything working fine and am down to one final hurdle. I would like to print the text of the current sort order above the table. For example: Sorted by Descending Last

[jQuery] LiveQuery=setTimeout() and Event Delegation Library

2008-02-13 Thread XASD
How compare both approaches from performance perspective? http://blogs.sun.com/greimer/entry/a_look_at_our_new Thanks.

[jQuery] Visual Studio 2008 friendly version of 1.2.3

2008-02-13 Thread MorningZ
Saw earlier today that someone went through and commented the whole jquery.1.2.3 file so it is nice and friendly with the latest version of studio http://lancefisher.net/blog/archive/2008/02/12/intellisense-for-jquery-in-visual-studio-2008.aspx To get jQuery and intellisense working properly,

[jQuery] returning an object array to a JS function - doesnt work

2008-02-13 Thread jquertil
Hi, I'm mixing regular javascript with Jquery and for some reason I cannot pass a return value back - any idea why? output = loadXMLarray('echo.php','datatable1') ); alert (output); // does not work function loadXMLarray(scripturl,variable){ $.get(scripturl,{xml:variable},

[jQuery] animation question

2008-02-13 Thread spaceage
I'm trying to create an effect using a ul within a div. I want to have each li slide up individually from (outside) the bottom of the div to the highest available position in the div without overlapping other li elements. Its kind of a scroll/accordian effect. At the conclusion of the

[jQuery] using click event on a map to update page

2008-02-13 Thread shane_magee
I am designing a map, such that different values in a table on the page update when I click on different areas of the map. As you can see the map is also inside the table although of course I could move it out if necessary. My html runs like this:

[jQuery] Re: onclick to page

2008-02-13 Thread andrea varnier
On 13 Feb, 10:59, Michael [EMAIL PROTECTED] wrote: *Bump* hi :) the problem is you just want to select the first anchor? $('a:first') or just the one that has the title ChangheCSS? $('a[title=ChangeCSS]') and so on... don't know if this helps...

[jQuery] Re: About jQuery.attr(type,value)

2008-02-13 Thread andrea varnier
On 13 Feb, 12:23, wwwiori [EMAIL PROTECTED] wrote: Dear Team, I have a question that how can I modify the attribute using jQuery. For example: There have a element: input id=changeType type=checkbox value=has changed and now I would like to change the type to button, following code is

[jQuery] Sliding vertically a floated element depending on scrollbar

2008-02-13 Thread Feed
Hi all, I think I've looked all plugins available on jquery.com and haven't found what I need. As I don't have enough experience to write my own plugin, I'd like to know if there a already a plugin to make it easier to accomplish this effect: http://www.webstudiohelp.net/index.html

[jQuery] Re: OT: FCK editor now double spaces with enter key?

2008-02-13 Thread Chris Jordan
that's lame. enter should be a single line break. If I want a double line break, I'll hit enter twice. On Feb 13, 2008 1:29 AM, andrea varnier [EMAIL PROTECTED] wrote: On Feb 12, 8:32 pm, Andy Matthews [EMAIL PROTECTED] wrote: We've been using FCK editor for a while now. It used to create a

[jQuery] using resize event to adjust div height hangs IE6 and IE7

2008-02-13 Thread Sean Ronan (Activepixels)
Hi all, I'm using $(window).resize() to adjust a div height on the fly. I've found that mucking about with the window size causes IE6 IE7 to hang - I guess because too many events are being fired for IE to cope? Here's my code : function content_resize() { var w = $( window );

[jQuery] Re: Sortserialize returns nothing!

2008-02-13 Thread bjorsq
I've recently updated my setup to jquery 1.2.3 and am using sortables from UI 1.5b. I couldn't get the serialize option to work either - something to do with the way options are parsed - by default it tries to match the ids of all sortable items to (/(.+)[-=_](.+)/) so I guess your IDs need to

[jQuery] Re: onclick to page

2008-02-13 Thread Michael
Thank you for getting back to me :) $('a:first').click(function() - works great, but the chances of this being the first anchor in the page is unlikely. $('a[title=changeCSS]').click(function() - Makes sense but doesn't work. The link on the page is lia href=sessions.php title=changeCSSChange

[jQuery] Re: - Problem with nested tabs

2008-02-13 Thread carvingcode
Follow up: After updating to 1.2.3, the problem totally went away.

[jQuery] jcarousel not loading fully in safair

2008-02-13 Thread heidik
Hello All: We're getting ready to launch an awesome library of Mathematica generated screensavers and desktop backgrounds at wolfram research, where I'm senior graphic designer. We've got the jcarousel set up, loading images and working fantastic - EXCEPT in Safari. On entering the page in safari

[jQuery] Re: overlaying jqModal over other divs

2008-02-13 Thread pere roca
Well, it was just a simple z-index issue (http://dev.iceburg.net/jquery/jqModal/toTop.html) thanks again, Alexandre Pere pere roca wrote: dear jquery list, here come again wondering if someone can give me a little clue to what's going wrong when trying to overlay a draggable

[jQuery] Re: onclick to page

2008-02-13 Thread Michael
$(document).ready(function() { $('#changeCSS').click(function() /*$('a:first').click(function()*/ { $('body').fadeOut(slow, function() { }); $('body').fadeIn(slow); }); }); Got it to work :) thank you

[jQuery] Re: Superfish animation problem in ie

2008-02-13 Thread Joel Birch
Hi Ben, It turns out that the problem is that you are applying top:-34px; to .nav * (that's every element within the nav) whereas what you want to do is apply it to .nav only. You will also need to add position:relative to .nav to make that negative top value work. Then you will need to adjust

[jQuery] Re: Need help with the basics: functions variables

2008-02-13 Thread [EMAIL PROTECTED]
Andrea, it's a great relief to know I haven't gone completely mad!! I agree, it seems easier to put all the code inside the function it also seems clumsy and stupid :/ There has to be at least one sensible method (I hope!) Here's wishing luck to both of us :) On Feb 13, 3:30 pm, andrea

[jQuery] Re: Sliding vertically a floated element depending on scrollbar

2008-02-13 Thread Feed
Hello Andrea, Thanks for your help! Your approach really does work, I'll try to tailor it to my needs. Thanks! On Feb 13, 12:01 pm, andrea varnier [EMAIL PROTECTED] wrote: On 13 Feb, 15:31, Feed [EMAIL PROTECTED] wrote: Hi all, I think I've looked all plugins available on jquery.com and

[jQuery] Re: OT: FCK editor now double spaces with enter key?

2008-02-13 Thread andrea varnier
On 13 Feb, 16:03, Chris Jordan [EMAIL PROTECTED] wrote: that's lame. definitely. but I think it has something to do with editors like Dreamweaver. I remember using it once... is there a CTRL+Return combo or something?

[jQuery] Need help with the basics: functions variables

2008-02-13 Thread [EMAIL PROTECTED]
I'm embarrassed to admit this. After literally days of reading experimenting, I still haven't got a grip on how we're supposed to define functions get results out of them! ( http://jquery.cherryaustin.com ) For example, I used this to find out whether images are on ( http://tinyurl.com/3dy6pb

[jQuery] Cute Digital Camera shot

2008-02-13 Thread transinet transinet
Cute Digital Camera Shot http://clocks.110mb.com/digital_camera.html digital_camera.swf Description: application/shockwave-flash

[jQuery] jQuery BlockUI and ASP.NET

2008-02-13 Thread ALBO
Good day guys, I'm tring to integrate jQuery blockUI plugin in my .net pages. Basically I added this js code, first of all: script type=text/javascript $().ajaxStop($.unblockUI); function test() { $(document).ready(function() {

[jQuery] Pagination and Filtering Data

2008-02-13 Thread ATLeich
At this point, it's just a high-level process I'm trying to establish as well as the feasibility of doing what I'm looking to accomplish so no code at this point. But basically, the requirement is to have a new way to handle pagination and filtering for an eCommerce store. The interface is

[jQuery] Re: OT: FCK editor now double spaces with enter key?

2008-02-13 Thread Andy Matthews
Right... You can force it to single space by hitting SHIFT + enter, but I'd like to know if there's a preference which can be changed to force it to revert to single spacing by default. This is changed in the new version of FCK. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Superfish animation problem in ie

2008-02-13 Thread Joel Birch
On 14/02/2008, Joel Birch [EMAIL PROTECTED] wrote: you link to the bgiframe plugin in the head and call it after initialising Superfish. This is throwing errors. Sorry, I meant that the link to bgiframe.js is returning 404 so the bgiframe isn't present when you call it in the code. Joel

[jQuery] Re: Need help with the basics: functions variables

2008-02-13 Thread andrea varnier
On 13 Feb, 15:56, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I've been trying to [1] get a named boolean out of this, which I can later use for checks; [2] turn it into a reusable function - ideally, both things together! I think it is not easy as it seems, and I'll try to explain why :) you

[jQuery] Re: controlling li-items with unique IDs and trigger corresponding DIVs

2008-02-13 Thread Sean Ronan (Activepixels)
Thanks Jannik, that's got me in the right direction. I now need to allow the mouse to move from the li to the div without it disappearing (the div is css positioned to the right of the li) and then keep the div shown whilst over the div, only hiding the div when we move off the div or onto a

[jQuery] Re: Updated API browser

2008-02-13 Thread Joel Stein
I think the only thing I'd like to see on this is a way to see all method. Perhaps by default, everything shows, and when searching, it refines the search? Or maybe a * could search for everything...

[jQuery] Re: Uploader 0.9 beta

2008-02-13 Thread Benjamin Sterling
That works for me. On 2/13/08, Gilles (Webunity) [EMAIL PROTECTED] wrote: I'll set up a fourth demo, with total progressbar, also i'll try to visualise what is going on, on each page by creating a flow diagram... Oke? -- Benjamin Sterling http://www.KenzoMedia.com

[jQuery] Re: jQuery BlockUI and ASP.NET

2008-02-13 Thread Mike Alsup
Is this only a problem in IE? where clk_search is the method that submit the form. With this code, my loading message box appears but no submit has made. What's wrong? thanks alberto

[jQuery] Re: what editor do you use?

2008-02-13 Thread Andy Matthews
Editplus www.editplus.com Best one I've found in 6+ years of looking, been using it for about the same amount of time. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Feijó Sent: Wednesday, February 13, 2008 10:38 AM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: animation question

2008-02-13 Thread andrea varnier
On 13 Feb, 06:41, spaceage [EMAIL PROTECTED] wrote: Is this a reasonable undertaking using jQuery, or is there another better way (or plug in) to do this? jQuery is perfect for this kind of things :) just give the div a overflow:hidden style, and the li's a position:relative, and a very high

[jQuery] Re: OT: FCK editor now double spaces with enter key?

2008-02-13 Thread tlphipps
I think I found the setting. In the fckconfig.js file there are two lines: FCKConfig.EnterMode = 'p' ; // p | div | br FCKConfig.ShiftEnterMode = 'br' ; // p | div | br Looks like if you change the first one to 'br' you'd be set. On Feb 13, 9:32 am, Andy Matthews

[jQuery] what editor do you use?

2008-02-13 Thread Feijó
I changed my own a few weeks ago, now I'm using Editpad++ (http://sourceforge.net/projects/notepad-plus/) its freeware, nice resources, like macros, quick-text, highlighted source, ... and yours? -- Feij

[jQuery] Re: what editor do you use?

2008-02-13 Thread spinnach
..you mean notepad++ :).. i'm using it also, great little app.. dennis. Feijó wrote: I changed my own a few weeks ago, now I'm using Editpad++ (http://sourceforge.net/projects/notepad-plus/) its freeware, nice resources, like macros, quick-text, highlighted source, ... and yours? --

[jQuery] Re: what editor do you use?

2008-02-13 Thread andrea varnier
Notepad++; :)

[jQuery] Re: overlaying jqModal over other divs

2008-02-13 Thread Alexandre Plennevaux
no problemo :) On Feb 13, 2008 4:55 PM, pere roca [EMAIL PROTECTED] wrote: Well, it was just a simple z-index issue (http://dev.iceburg.net/jquery/jqModal/toTop.html) thanks again, Alexandre Pere pere roca wrote: dear jquery list, here come again wondering if someone

[jQuery] Re: [validate] custom submit action

2008-02-13 Thread Jörn Zaefferer
Josoroma schrieb: If i have a custom css toolbar in a form called confirm that doesn't use a normal submit button like: input value=Register type=submit Instead i need to use the following css-link-button to check the validate before submit: div class=buttonsa href=javascript:{} class=positive

[jQuery] Re: [treeview] How to force a branch open.

2008-02-13 Thread Jörn Zaefferer
sozzi schrieb: I love the plugin and it does its job perfectly. Especially the persist: location trigger makes my life so much easier. But I don't quite know how to open a branch in reverse. I.e. I use it for navigation and it works all the way down to the category level using persist:location.

[jQuery] Re: Release: Validation plugin 1.2.1

2008-02-13 Thread Jörn Zaefferer
Rufio schrieb: Hi Jorn I wanted to know why we would use class names such as: class={required:true,email:true} when the following will work perfectly and allows for easier class manipulation (ie when making certain fields optional depending on which submit button you press): class=required

[jQuery] Re: what editor do you use?

2008-02-13 Thread Andy Matthews
Not sure what you mean...I just looked at a screenshot of Notepad++ and it looks almost the same as Editplus. Notepad++ http://sourceforge.net/project/screenshots.php?group_id=95717 Editplus http://www.editplus.com/ss/editplus.gif _ From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: Wrapping Contiguous Elements

2008-02-13 Thread Karl Swedberg
Hi Ron, you should be able to do this with the .wrapAll() method: http://docs.jquery.com/Manipulation/wrapAll Something like this, maybe: $('input:radio').each(function() { var $next = $(this).next('label'); var $both = $(this).add($next); if ($both.length == 2) {

[jQuery] Re: clock pick in ajax loaded form - ie error

2008-02-13 Thread Josh Nathanson
Hey Pete, It looks like you're not using the latest release. I can tell because the bgiFrame option does not appear in the clockpick.js source code in Firebug when I view your page. This option was added in the latest release. That said, it should still work...not sure what is going on

[jQuery] Re: returning an object array to a JS function - doesnt work

2008-02-13 Thread Dave Methvin
The loadXMLarray() is trying to return objectArray before the callback in $.get() has finished. You probably need to use a callback for loadXMLarray as well. Also, you are defining objectArray as a global variable since it doesn't have var in front of it. That is probably a bad idea.

[jQuery] Re: what editor do you use?

2008-02-13 Thread Feijó
I dont like the editplus interface, very ancient :) But its a good app too!! Feij Andy Matthews escreveu: Editplus www.editplus.com Best one I've found in 6+ years of looking, been using it for about the same amount of time. From: jquery-en@googlegroups.com

[jQuery] Re: what editor do you use?

2008-02-13 Thread Feijó
lol yes, notepad++ Feij spinnach escreveu: ..you mean notepad++ :).. i'm using it also, great little app.. dennis. Feij wrote: I changed my own a few weeks ago, now I'm using Editpad++ (http://sourceforge.net/projects/notepad-plus/) its freeware, nice

[jQuery] Re: what editor do you use?

2008-02-13 Thread Feijó
They improved a little the interface, has been some time since the last time I saw it But editpad++ is free!! editplus has pay resources :) baita abrao Feij Andy Matthews escreveu: Not sure what you mean...I just looked at a screenshot of Notepad++ and it looks almost the

[jQuery] Re: what editor do you use?

2008-02-13 Thread Alexis
I use vim, once you get used to most commands you realize how powerful it is. I've been using it for more than 3 years now and it's all I need for my PHP, jQuery, HTML, CSS, Python and even for writing blog posts.

[jQuery] Choosing an Autocompletion solution

2008-02-13 Thread timothytoe
I searched google for jquery autocompletion and was overwhelmed by the choices. Looks like people have been borrowing heavily back and forth to get the best solution. Has anyone gone through the choices recently and selected one? If so, which did you choose and why? I'd like to use it for both

[jQuery] Re: what editor do you use?

2008-02-13 Thread timothytoe
I tried a bunch and ended up with PSPad.

[jQuery] Re: what editor do you use?

2008-02-13 Thread Andy Matthews
Yep... Free is nice, but just because it's free doesn't make it the best. Anyway...to each his own. I wish you the best of luck with NotePad++ _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Feijó Sent: Wednesday, February 13, 2008 12:21 PM To:

[jQuery] Re: [treeview] How to force a branch open.

2008-02-13 Thread sozzi
Thank you for the response, I'll try to do that. I just wanted to make sure that you hadn't allready integrated something like the active:class you have in the accordion. I'll let you know how it turns out. Thanks Angelo On Feb 13, 9:50 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: sozzi

[jQuery] Announce: Simple Effects Plugins on learningjquery.com

2008-02-13 Thread Karl Swedberg
Hi everyone, I don't usually announce to this list when I post something on learningjquery.com, but I figured it might be worth doing so this time, because the entry grew out of a couple questions from the list. It shows how to extend jQuery's default set of effects/animations in a

[jQuery] Re: Announce: Simple Effects Plugins on learningjquery.com

2008-02-13 Thread timothytoe
One thing I've been wondering about animate. Can you create a function for the path that something moves along? On Feb 13, 10:44 am, Karl Swedberg [EMAIL PROTECTED] wrote: Hi everyone, I don't usually announce to this list when I post something on learningjquery.com, but I figured it might

[jQuery] Re: Choosing an Autocompletion solution

2008-02-13 Thread Diego A.
I use: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ I made this decision a few months ago, but I remember going through 4 or 5 options (I even considered writing my own), but in the end I chose the option that I thought was most likely to see future development and support.

[jQuery] Re: ajax file uploads: getting strange error

2008-02-13 Thread Jake McGraw
Just started getting this issue with the Forms plugin! - jake On Feb 9, 2008 5:07 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I just downloaded the latest version of the ajax file upload plugin (http://www.phpletter.com/Demo/AjaxFileUpload-Demo/). I have created a test page

[jQuery] Sortable and Cookie/history, need some help

2008-02-13 Thread eugene33
Hello, I'm trying to make a frontpage like iGoogle, it works very nicely with sortable but I cant get to keep the changes users made. each loading the changes disapear I tried two options: * Cookie with the plugin from www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/ * Serialize which

[jQuery] Re: Updated API browser

2008-02-13 Thread Alexandre Plennevaux
better the * suggestion. poor Remy's bandwidth otherwise ! On Feb 13, 2008 3:22 PM, Joel Stein [EMAIL PROTECTED] wrote: I think the only thing I'd like to see on this is a way to see all method. Perhaps by default, everything shows, and when searching, it refines the search? Or maybe a *

[jQuery] Re: multi-leveled jcarousel

2008-02-13 Thread Josh V
yea, you might need to have it nested. ul li - div1 div2 div3 div4 div5 div6 /ul On Feb 6, 7:11 pm, RyanAZ [EMAIL PROTECTED] wrote: does anybody know of a method that allows for two rows of three items to show up with thejcarouselplugin?

[jQuery] Re: what editor do you use?

2008-02-13 Thread Mika Tuupola
On Feb 13, 2008, at 6:38 PM, Feijó wrote: I changed my own a few weeks ago, now I'm using Editpad++ (http://sourceforge.net/projects/notepad-plus/ ) its freeware, nice resources, like macros, quick-text, highlighted source, .. Textmate with jQuery bundle, of course :)

[jQuery] keeping element is same position no matter scroll

2008-02-13 Thread Eridius
I want to create the same effect the thickbox/thickbox reloaded does so if someone tries to scroll down manually with the mouse and browser side scroll bar my content remain in the same place not matter where they scroll, how is this possible? I search the thickbox reloaded code and can't seem

[jQuery] Re: keeping element is same position no matter scroll

2008-02-13 Thread Jeffrey Kretz
There are four ways to do this. One is a css property called { position:fixed }, however that only works on a CSS2 browser such as Firefox, Opera, Safari and IE7. It does not work on IE6 or below. The second thing would be to attach a function to the window.onscroll event.

[jQuery] Re: what editor do you use?

2008-02-13 Thread Alexandre Plennevaux
aptana studio On Feb 13, 2008 8:49 PM, Mika Tuupola [EMAIL PROTECTED] wrote: On Feb 13, 2008, at 6:38 PM, Feijó wrote: I changed my own a few weeks ago, now I'm using Editpad++ (http://sourceforge.net/projects/notepad-plus/ ) its freeware, nice resources, like macros, quick-text,

[jQuery] Re: keeping element is same position no matter scroll

2008-02-13 Thread Eridius
I have used a js script that did this same thing(might have been the same script) and instead of fixed IE 6 it would crash IE 6 randomly. I also think it is over kill to add 23KB to fix a small issue or make this a requirement to use my plugin. Cloudream wrote: try DEAN's IE7 js lib.

[jQuery] Re: keeping element is same position no matter scroll

2008-02-13 Thread Cloudream
try DEAN's IE7 js lib. http://dean.edwards.name/IE7/ On Feb 14, 4:08 am, Eridius [EMAIL PROTECTED] wrote: I want to create the same effect the thickbox/thickbox reloaded does so if someone tries to scroll down manually with the mouse and browser side scroll bar my content remain in the same

[jQuery] plugin creation / OOP question

2008-02-13 Thread Alexandre Plennevaux
hi! while working on a plugin and following Mike Alsup's plugin pattern ( http://www.learningjquery.com/2007/10/a-plugin-development-pattern), i'm stuck trying to reference an external function inside the plugin: i have an externally accessible configuration object to store options 's default

[jQuery] tabs: Can't get tabs to work, but I'm including the right files!

2008-02-13 Thread [EMAIL PROTECTED]
I just downloaded the jquery tabs zip file, unzipped it and got the demo working http://elearningrd.info/tabs/scripts/tabs/ but when I try and build my own page, I get JS errors: http://elearningrd.info/tabs/docbuilder/build_doc2.php I'm including the same JS files (so I think) as the demo

[jQuery] Re: About jQuery.attr(type,value)

2008-02-13 Thread Karl Rudd
You'd be better off making a new button and copying the attributes across. Certain browsers *cough* IE 6 *cough* don't allow you to change the type of a input once it's created. Karl Rudd On Feb 13, 2008 10:23 PM, wwwiori [EMAIL PROTECTED] wrote: Dear Team, I have a question that how can I

[jQuery] Loading page plugin or script.

2008-02-13 Thread Josoroma
Maybe a newbie question. When i use Plesk 8 there is a loading message that display loading page contents, and dissapear until all the page is loaded. There exist some jquery plugin or script for this kind of functionality? to prevent users to use the page options untill all the scripts, images

[jQuery] [validate] Possible bug - if name field looks like: questionAnswersMap(Q8).answers[0]

2008-02-13 Thread rickcr
My name fields in my form are backed by a String array in a HashMap and I need them in the following format: questionAnswersMap(Q8).answers[0] The problem is when I try to assign a validation rule to this name, I get an error in the javascript parsing: 'missing : after property id [Break on

[jQuery] Re: Loading GIF Slideshow w/o Modal

2008-02-13 Thread Ange
Unfortunately, this method doesn't validate. I'm getting an error for every appended image in the head of the page. Is there a way to use .append( 'img /) that validates? -Ange On Feb 4, 4:42 am, Pickledegg [EMAIL PROTECTED] wrote: Thats clever, thanks Ange. So on mouse over the image tags

[jQuery] Hide / Show problems with IE

2008-02-13 Thread igb
Hello, I am trying to use the show/hide jquery function to show and hide book descriptions by clicking on the name of the book. It seems that the script works OK in firefox but not at all in IE. (In IE the descriptions are hidden and won't show) For example,

[jQuery] Re: what editor do you use?

2008-02-13 Thread WolfZombie
I'm using (and have been for quite a few years) TextPad. http://www.textpad.com/

[jQuery] help with show hide on wordpress site

2008-02-13 Thread igb
Hello, I am trying to use the show/hide jquery function to show and hide book descriptions by clicking on the name of the book. It seems that the script works OK in firefox but not at all in IE. (In IE the descriptions are hidden and won't show) For example,

  1   2   >