[jQuery] Re: plugin creation question

2008-02-13 Thread Joel Birch
Hi Alexandre, I didn't really look too closely at your code but this might help anyway. Try removing the brackets from the bit where you assign initializeUploader to onIni so it looks like this: $.fn.jqUploader.defaults = { onIni: initializeUploader, /*remove brackets*/ // more options...

[jQuery] Re: Loading page plugin or script.

2008-02-13 Thread [EMAIL PROTECTED]
Hi, Josoroma :) It's easy to do this by making an absolutely positioned div, which will sit on top of your page content for a set amount of time. jQuery has some methods to do it, maybe you will find this article helpful: http://tinyurl.com/yu9g7a Cherry http://jquery.cherryaustin.com On Feb 13

[jQuery] if (! someThing.fired ) {

2008-02-13 Thread [EMAIL PROTECTED]
Is *fired* a valid property? If it is, how should you access it? There's nothing about it in the api, but I've seen it in some plugins. I'm hoping (desperately, by now) that it may hold the key to my painful non-working function problem ...

[jQuery] Re: how to disable wheel scroll?

2008-02-13 Thread [EMAIL PROTECTED]
Why on earth would you want to? Your visitors may think your page broke their computer! Eridius wrote: > but the wheel scroll still scrolls the window, how to i disable it.

[jQuery] Re: Choosing an Autocompletion solution

2008-02-13 Thread timothytoe
I'll try Jörn's. The only thing that gave me pause on that one was the number of dependencies. On Feb 13, 6:15 pm, Jack Killpatrick <[EMAIL PROTECTED]> wrote: > I also decided to use that one (Jörn's) after evaluating 4 or 5 others. > As you (timothy) noticed, many of the solutions borrowed from

[jQuery] Re: Updated API browser

2008-02-13 Thread Jack Killpatrick
FWIW, I pulled the necessary files down to my local system to give it a try (running of a local web server) and noticed that it's not much faster running locally than remotely. I suspect that's because of client-side lookups on the fetched XML file? If so, any way to speed it up? (I haven't r

[jQuery] Re: Choosing an Autocompletion solution

2008-02-13 Thread Jack Killpatrick
I also decided to use that one (Jörn's) after evaluating 4 or 5 others. As you (timothy) noticed, many of the solutions borrowed from each other, but that one seemed to have the best aggregate of features from them all and some of the others looked like they might have been stagnating. It has a

[jQuery] Re: Correct way to read JSON string

2008-02-13 Thread Mike Alsup
> > > Also you can check jQuery's source around line 2200 for an interesting > method that does not use eval: It doesn't use eval explicitly, but the server response is eval'd implicitly because it is requested with a script tag.

[jQuery] Re: Correct way to read JSON string

2008-02-13 Thread polyrhythmic
jQuery doesn't include JSON parsing separate from the getJSON, and if you look at the source it's only a couple lines, and designed to work with callbacks. It does not do hardcore JSON sanitizing so you do still need a safe source as always. For one JSON parsing method, see http://mg.to/topics/p

[jQuery] Re: what editor do you use?

2008-02-13 Thread Brice Burgess
On Feb 13, 11:38 am, Feijó <[EMAIL PROTECTED]> 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?-- Feijó I like mooEdit for an edito

[jQuery] how to disable wheel scroll?

2008-02-13 Thread Eridius
I have $(window).bind('scroll', function(){return false;}); but the wheel scroll still scrolls the window, how to i disable it. -- View this message in context: http://www.nabble.com/how-to-disable-wheel-scroll--tp15471899s27240p15471899.html Sent from the jQuery General Discussion mailing l

[jQuery] Re: what editor do you use?

2008-02-13 Thread Glen Lipka
Webuilder http://www.blumentals.net/webuilder/ Gle On Wed, Feb 13, 2008 at 5:01 PM, polyrhythmic <[EMAIL PROTECTED]> wrote: > > Komodo Edit: Free, runs on Gecko engine (with integrated previews), > Windows/Linux/OSX crossplatform, jQuery autocomplete & macros, syntax > highlighting and autocompl

[jQuery] Re: what editor do you use?

2008-02-13 Thread polyrhythmic
Komodo Edit: Free, runs on Gecko engine (with integrated previews), Windows/Linux/OSX crossplatform, jQuery autocomplete & macros, syntax highlighting and autocomplete across a multitude of languages, FTP/ remote file support, code search and collapsible code tree... just for starters. There's ev

[jQuery] Re: what editor do you use?

2008-02-13 Thread Sebastián V. Würtz
textpad textpad.com Feijó escribió: 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] plugin creation 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 v

[jQuery] Re: what editor do you use?

2008-02-13 Thread Feijó
nice one!! I'll give it a try for few days timothytoe escreveu: I tried a bunch and ended up with PSPad.

[jQuery] plugin to 'throw items around'

2008-02-13 Thread Bhaarat Sharma
Hi Does anyone know a plugin that would let users 'throw items around' in a designated area. basically something like this http://www.etsy.com/showcase.php once you click on an item, it pops up and then u can draw and throw it. i know there are bunch of drag and drop plugins around but anyone

[jQuery] Re: kill the cpu

2008-02-13 Thread Sebastián V. Würtz
thx karl, im still learning jquery is a great thing, sometimes is miss the logic about it. and its work perfect, now the cpu is 5 to 11%, and i notice i must define the function showtime inside the $(function(){} because i lose the vars in other way, but how i can make it work from outside?

[jQuery] Re: change in jQuery.grep in 1.2.3?

2008-02-13 Thread Karl Rudd
It's because jQuery has been changed to no longer use "eval" (partly to be compatible with Adobe AIR). Karl Rudd On Feb 14, 2008 10:25 AM, Ariel Flesler <[EMAIL PROTECTED]> wrote: > > Yeah.. same happened to me with map.. I had a ... > $.map(Array(some_number),'new Image')... and it broke down s

[jQuery] Re: change in jQuery.grep in 1.2.3?

2008-02-13 Thread Ariel Flesler
Yeah.. same happened to me with map.. I had a ... $.map(Array(some_number),'new Image')... and it broke down since 1.2.2 but I suppose that wasn't specified in the documentation so no one assured it'd stay.. or was it ? Ariel Flesler On 13 feb, 17:18, jody <[EMAIL PROTECTED]> wrote: > Using the

[jQuery] Re: what editor do you use?

2008-02-13 Thread Stephen
Have been using the HTML-Kit Tools (the purchased version) of http://www.htmlkit.com/ since its release (years) and have found it great. Good for syntax highlighting, great plugins, and the purchased version has an easy to use Project Interface to keep local and live files organised.

[jQuery] Re: textArea select text.

2008-02-13 Thread Karl Rudd
The document.getElementById().select() method doesn't work in all browsers so there needs to be some sort of "patched" function to get the selection. See the linked blog entry for details ( http://blog.0xab.cd/jquery-plugin---fieldselection ). The plugin is actually quite small and succinct, so I

[jQuery] Re: kill the cpu

2008-02-13 Thread Karl Rudd
Part of the problem may be that the elements are being searched every time the function is called. $('.year').text(anio); $('.day').text(dia); $('.month').text(mes); $('.week').text(week); $('span.h').text(String(hours)); $('span.minute').text(String(minutes)); $('span.seconds

[jQuery] Re: Correct way to read JSON string

2008-02-13 Thread J Moore
This isn't specific to jQuery. One way... var x = '{a:123,b:456}'; // json eval('var z='+x); z is now an object. z.a = 123, etc. -j On Feb 13, 3:47 pm, wolf <[EMAIL PROTECTED]> wrote: > hi, > > what is the correct way in jQuery to decode = deserialize a JSON > string? jQuery itself can obviou

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

2008-02-13 Thread MorningZ
Dave... here is a packed version of UITabs that works http://www.morningz.com/linked/Coding/ui.tabs.pack.js.txt "Although I'm not getting JS errors any more on this page... http://elearningrd.info/tabs/docbuilder/test.php"; Using Firebug, that packed version is still throwing an error (there

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

2008-02-13 Thread J Moore
you can't return a value from an anonymous function! think about it: you call $.get() and pass in an anon function as a parameter. $.get() returns basically immediately, and then sometime later (much later) your anon function will be called. Where does the return value of anon go? Nowhere. Th

[jQuery] Re: kill the cpu

2008-02-13 Thread Josh Nathanson
Rather than call the function recursively, you might want to use setInterval rather than setTimeout, which is what I think you are trying to achieve...that is, run the function once per second. I think if you run the function recursively without an "exit strategy" you get a circular behavior

[jQuery] Re: Grid with client side sorting

2008-02-13 Thread Shawn
If by "grid" you mean something like a table, then the tablesorter plugin does exactly what you're looking for. Shawn Lawrence Oluyede wrote: At work we're evaluating some grid controls with client side sorting capabilities. We tried Ext.Grid but it's a little too invasive (it also modifies

[jQuery] Re: textArea select text.

2008-02-13 Thread MorningZ
I am just curious, as i am trying to learn when jQuery might be overkill..but why wouldn't that simple document.getElementById().select() not be a desirable answer? like i don't see what is, or what can be, gained by jQuery-ifying it

[jQuery] Pagination plugin (and jquery plugin instances in general)

2008-02-13 Thread J Moore
I'm using the pagination plugin at the top and bottom of a list. Works great, except that the two instances are independent. Clicking on page "3" in the one pagination instance will not change the other. I've thought of various solutions/workarounds, but they all involve getting access to the pa

[jQuery] Re: Animate function. Once I animate how do I er.... de... animate

2008-02-13 Thread J Moore
um, use a variable? var x = true; $("#container").click(function() { if (x) { $("#container").animate({"marginTop": "-=237px"}, "slow"); } else { $("#container").animate({"marginTop": "400px"}, "slow"); } x = !x; }); On Feb 13, 3:05 pm, somedude <

[jQuery] Re: jcarousel not loading fully in safair

2008-02-13 Thread heidik
well - we figured out a work for this... safari seems to respond when the css come before the js - so switch the order of calls and safari is happy (note we are loading dynamically). On Feb 13, 9:42 am, heidik <[EMAIL PROTECTED]> wrote: > Hello All: > We're getting ready to launch an awesome lib

[jQuery] Re: Correct way to read JSON string

2008-02-13 Thread Shawn
one way (but probably not the best) var myobj = eval(myjsonString); I wouldn't trust this though - specially if the json string is from an untrusted source Shawn wolf wrote: hi, what is the correct way in jQuery to decode = deserialize a JSON string? jQuery itself can obviously do it

[jQuery] Re: kill the cpu

2008-02-13 Thread Shawn
Where's the "show_clock()" function? Or was that a typo? Otherwise, I don't see anything glaringly wrong with the code (just a quick glance though...) Shawn Sebastián V. Würtz wrote: can this code kill a cpu? $(function() { show_clock(); }); function showtime() { var meses = new

[jQuery] kill the cpu

2008-02-13 Thread Sebastián V. Würtz
can this code kill a cpu? $(function() { show_clock(); }); function showtime() { var meses = new Array("ENE","FEB","MAR","ABR","MAY","JUN","JUL","AGO","SEP","OCT","NOV","DIC"); var dias = new Array("DOMINGO","LUNES","MARTES","MIERCOLES","JUEVES","VIERNES","SABADO","DOMINGO"); v

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

2008-02-13 Thread Chris Jordan
Nice find. I'll bet that does it! :o) On Feb 13, 2008 10:36 AM, tlphipps <[EMAIL PROTECTED]> wrote: > > 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 |

[jQuery] Re: what editor do you use?

2008-02-13 Thread Jake McGraw
Zend Studio, before that TextMate On Feb 13, 2008 3:15 PM, Kyle Browning <[EMAIL PROTECTED]> wrote: > > Zend Studio. > > > On Feb 13, 2008, at 12:15 PM, Alexandre Plennevaux wrote: > > > aptana studio > > > > On Feb 13, 2008 8:49 PM, Mika Tuupola <[EMAIL PROTECTED]> wrote: > >> > >> > >> On Feb 1

[jQuery] re[jQuery] moving a certain event from element

2008-02-13 Thread Eridius
I have a plugin that creates a click event on $(document). I want to be able to remove just that event and if something else has added an click event to the $(document) I still want it. $(document).unbind('click') will remove all event, even ones i did not create. is there a way to do this? --

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

2008-02-13 Thread Jörn Zaefferer
rickcr schrieb: 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 propert

[jQuery] Re: Choosing an Autocompletion solution

2008-02-13 Thread Jörn Zaefferer
Diego A. schrieb: 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 develop

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

2008-02-13 Thread Jörn Zaefferer
sozzi schrieb: 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 Sooner or later I'll add a feature that'll work like the act

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

2008-02-13 Thread [EMAIL PROTECTED]
That's fine, I went ahead and downloaded the files used here, http://docs.jquery.com/UI/Tabs#Example, and I don't get any more weird JS errors. But I have another question. Although I'm not getting JS errors any more on this page... http://elearningrd.info/tabs/docbuilder/test.php the LIs stil

[jQuery] Re: what editor do you use?

2008-02-13 Thread Erik Beeson
IntelliJ IDEA and gvim. I use gvim literally all the time. I have an icon on my dock for "Open with gvim" that I can just drop files on. Very handy. The nice thing about gvim (or vi in general I guess), is that while there are a lot of commands, way more than anyone would be expected to learn all

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

2008-02-13 Thread Klaus Hartl
Dave, that's weird, there's a syntax error in the packed script in the second example, but the files are the same. I checked the response headers and they're different: DateWed, 13 Feb 2008 21:23:34 GMT Server Apache Connection Keep-Alive, Keep-Alive Keep-Alive timeout=15, max=98 E

[jQuery] Re: Updated API browser

2008-02-13 Thread Glen Lipka
I love the site. It's awesome. Is it possible to update the existing http://www.jquery.com/api to use it? Glen On Wed, Feb 13, 2008 at 11:21 AM, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > > better the "*" suggestion. poor Remy's bandwidth otherwise ! > > On Feb 13, 2008 3:22 PM, Joel Ste

[jQuery] Re: what editor do you use?

2008-02-13 Thread besh
Vim ...for everything http://www.vim.org/index.php -- Bohdan Ganicky On Feb 13, 5:38 pm, Feijó <[EMAIL PROTECTED]> 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, high

[jQuery] Re: what editor do you use?

2008-02-13 Thread Kyle Browning
Zend Studio. On Feb 13, 2008, at 12:15 PM, Alexandre Plennevaux wrote: > 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

[jQuery] Animate function. Once I animate how do I er.... de... animate

2008-02-13 Thread somedude
Ok sorry about the title, don't know what to say. I have a site for a client, and when you click a certain div it animates with a marginTop -=300px like effect so the div is just visible sliding in behind another div. Now, if the user clicks the div again it will do the same and go up by 300px.

[jQuery] change in jQuery.grep in 1.2.3?

2008-02-13 Thread jody
Using the following method no longer works in version 1.2.3 (stealing examples from documentation): arr = jQuery.grep(arr, "a != 9"); Debugging was showing an undefined function using the above method. Rolling back to 1.2.2, all works fine with the above. Anticipating using the new ui.jQuery pac

[jQuery] Grid with client side sorting

2008-02-13 Thread Lawrence Oluyede
At work we're evaluating some grid controls with client side sorting capabilities. We tried Ext.Grid but it's a little too invasive (it also modifies the HTML content of the page outside the div where it belongs), it's *really* heavy and have some issues with our CSS files (its CSS classes are not

[jQuery] Re: what editor do you use?

2008-02-13 Thread MorningZ
I'm a .NET programmer, so it's Visual Studio 2008 for me and with this week's hotfix, using jQuery is a breeze inside the enviroment

[jQuery] Re: jQuery BlockUI and ASP.NET

2008-02-13 Thread MorningZ
What is the function "test()" doing? And a better way, well my opinion anyways, would be to use two buttons, one pure HTML calling the block code, and one server side one with "display: none"... have the user click the HTML button/image, call your block code, and if all is well, trigger the hidd

[jQuery] Re: Using setTimeout with a callback (callback appends function content)

2008-02-13 Thread WolfZombie
Is there a better way to link animations in jQuery. Maybe I am going about this the wrong way. On Jan 18, 2:19 pm, WolfZombie <[EMAIL PROTECTED]> wrote: > I'm not sure if my last reply went through. > Here is a link to the > file:http://www.cheesymovienight.com/test/slideshow/slide.php > > Clic

[jQuery] Counting checked input checkboxes

2008-02-13 Thread alexyz
I would like to count the number of checkboxes with "checked" attribute equals to true inside the page's "category section" in which the user clicks. I use the variable "checkedInputCheckboxCount" to store this information but it seems that I get results multiplied by 2. What did I do wrong? Any

[jQuery] Correct way to read JSON string

2008-02-13 Thread wolf
hi, what is the correct way in jQuery to decode = deserialize a JSON string? jQuery itself can obviously do it as it can formulate and read JSON via Ajax. But i seemingly can't find a callable in jQuery that allows me to decode JSON without issuing an HTTP request. That is strange to me. Can you

[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, http://squarehedge.com/bastianbooks/

[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, http://squarehedge.com/bastianbooks/

[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] 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( ') that validates? -Ange On Feb 4, 4:42 am, Pickledegg <[EMAIL PROTECTED]> wrote: > Thats clever, thanks Ange. So on mouse over the image tags 02>07

[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 th

[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 a

[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

[jQuery] Re: textArea select text.

2008-02-13 Thread Karl Rudd
Try this plugin: http://laboratorium.0xab.cd/jquery/fieldselection/0.2.3-test/test.html Karl Rudd On Feb 13, 2008 8:48 PM, poncz <[EMAIL PROTECTED]> wrote: > > How do I mark the text in a textArea as selected? > In DOM it would be document.getElementById("textAreaElm").select(); > But is do

[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 pag

[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 v

[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 sa

[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. $(window).bind('scro

[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, qu

[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 t

[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 :) http://macromates.co

[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: 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 mayb

[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 gi

[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] 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. O

[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 mi

[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] 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 simpl

[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-en@goog

[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] 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 abraço Feijó Andy Matthews escreveu: Not sure what you mean...I just looked at a screenshot of Notepad++ and it looks almost the sa

[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 s

[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 PR

[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="require

[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: [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: Instead i need to use the following css-link-button to check the validate before submit: How can i do the validate and submit? Try to submit the form via jQuery, that

[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 the

[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) { $both.wrapAll('');

[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 resourc

[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

[jQuery] Re: what editor do you use?

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

[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 hig

[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: [j

[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 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? -- Feij

[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ó

  1   2   >