[jQuery] Re: (cross post) Safari problem with accordion plugin / Safari detector / workaround ?

2007-10-01 Thread Karl Rudd
I've worked with Safari quite a bit. If that's the problem you're having then it's a refresh issue. Sometimes Safari will "forget" to refresh the page layout, even though you've just made changes to the classes of elements. To get around it do something that changes the actual structure of the DO

[jQuery] Re: (cross post) Safari problem with accordion plugin / Safari detector / workaround ?

2007-10-01 Thread MichaelEvangelista
Just a follow up... using browserCam, I was just looking at the page above using Safari 2.0. Indeed, the first 'next' button throws up a blank screen... but if I resize the window, the actual second page of the form appears again. Strange. The fact that simply changing the browser window size mak

[jQuery] Re: Debugging in Safari 2

2007-10-01 Thread MichaelEvangelista
gordon - did you find out anything about safari js/jquery bugs in general? I am up against a similar issue. On Sep 25, 9:26 am, Gordon <[EMAIL PROTECTED]> wrote: > I really need a hand with my IT Assistant project (http://www.pcwb.com/ > assistants/) and an issue inSafariversion 2. As it works

[jQuery] having issues with getJSON

2007-10-01 Thread Benjamin Sterling
Hey all, I am trying to get my jqAlbumParser plugin updated to work with 1.2.1 and coming up short when communicating with Picasa. Here is the url for your view http://www.benjaminsterling.com/experiments/jqAlbumParser When you click on Flickr you will get an alert "done", but when you click on p

[jQuery] Re: JSPacker for .NET

2007-10-01 Thread Corey Downie
I am currently writing a similar library but using jsmin. I would love to take a peek at the code. On Sep 17, 9:08 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote: > I've spend the last few days building a .NET implementation of a gzip > packer. It accepts an argument like either of these two: >

[jQuery] (cross post) Safari problem with accordion plugin / Safari detector / workaround ?

2007-10-01 Thread MichaelEvangelista
(cross post with UI Group - are same members are in both?) Hi group - I've built a set of pages on this site, creating multi-step forms using Joern's accordion plugin ( http://bassistance.de/jquery-plugins/jquery-plugin-accordion/) Everything's working great - except in Safari, where it falls a

[jQuery] Re: Pulling in a specific #div with jqModal

2007-10-01 Thread will
That should work swimmingly. I dunno why it didn't occur to me. Load it into the jqm div and then display the jqm as normal, without any sorta jqm ajax call. Thanks! will On Oct 1, 2:19 pm, Jack Killpatrick <[EMAIL PROTECTED]> wrote: > I haven't used it yet, but if I've read things correctly,

[jQuery] Re: 3,6,9,12...

2007-10-01 Thread Karl Swedberg
Hey Adam, Glad you found that! :-) Klaus's version is a lot simpler, though, so you might want to try that instead. At press time, the :nth-child () didn't allow for something like :nth-child(3n) or :nth-child(3n +2); it just took a single number, like :nth-child(3). It's much more robus

[jQuery] Re: Undefined selector returning the document

2007-10-01 Thread Michael Geary
I think that is my fault; it was a patch I submitted way back at the beginning of last year. But you're right, $(undefined) shouldn't select the document, only $() with no arguments at all should. Want to file a ticket on it? The offending code is at the beginning of jQuery.fn.prototype: //

[jQuery] Re: How to add/remove dynamic blocks of html

2007-10-01 Thread Michael Geary
> From: James Dempster > > Much nicer to split the lines making it more readable. > > $(this).parent().append([ > "", > " "x", > "" > ].join("")); Also, once you're using .join, you don't have to use + inside it; you can use comma for all your string concatenation. And t

[jQuery] Re: editease - my first plugin endeavor

2007-10-01 Thread Rob D
Hi Stephen, Awesome, I like the look of this a lot! I can't wait to find some time to muck about with this in the very near future. Good Luck with your project. Rob [EMAIL PROTECTED] wrote: Well I have been playing with jQuery for a few months, and wanted to test a few basic concepts.

[jQuery] Re: What causes the speed bottleneck in Javascript?

2007-10-01 Thread John Beppu
http://ejohn.org/blog/javascript-engine-speeds/

[jQuery] Re: What plugins are ready for prime time

2007-10-01 Thread David Pollak
On Oct 1, 12:48 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > David Pollak schrieb:> although I had to rewrite all the $ references to > jQuery so I could fit Scriptaculous, jQuery, and BlockUIin the same browser. > > Why that? BlockUI uses a handy trick to be able to use $ while not > relyin

[jQuery] [Site Submission] pastemonkey.org now live!

2007-10-01 Thread Tane Piper
Hey folks, I'm pleased to announce the full service of Paste Monkey is now running at http://pastemonkey.org. This is a collaborative pastebin developed in CakePHP 1.2, and running AJAX with jQuery. It is still in the beta stage, but very functional, with features such as: * Use of Live Query

[jQuery] Re: 3,6,9,12...

2007-10-01 Thread Klaus Hartl
Adam Stacoviak wrote: I'm trying to find out how to add a class to every third occurrence of an element. Basically, I have a DIV with an undefined number of DIVs inside of it, and I want to add a class to every third DIV Try: $('div:nth-child(3n)').addClass(...); --Klaus

[jQuery] What causes the speed bottleneck in Javascript?

2007-10-01 Thread Derek Gathright
Forgive me for a non-jquery related post, but I'm hoping someone on here might be knowledgeable enough with Javascript to answer it. I see lots of post on here regarding optimization for DOM traversing and think it's funny since most people gave up spending much time worrying about CPU & memory bo

[jQuery] Re: editease - my first plugin endeavor

2007-10-01 Thread Robert Koberg
On Mon, 2007-10-01 at 14:16 -0700, [EMAIL PROTECTED] wrote: > But for a question a little off topic. Looks like the only way for > the editor to produce valid code is to use the doctype 'XHTML 1.0 > Transitional', there is some weirdness (align attr. on images) with > the wysiwyg editor with flo

[jQuery] Re: 3,6,9,12...

2007-10-01 Thread Adam Stacoviak
I figured it out...I just needed to do a bit more reading to my Learning jQuery book! var classNames = { 0: 'first', 1: 'second', 2: 'third' }; $('#section_wrapper_div .section_item').each(function(index) { $(this).addClass(classNames[index % 3]); }); On 10/1/07, Adam Stacoviak <

[jQuery] Re: Events

2007-10-01 Thread [EMAIL PROTECTED]
Thank you very much. That is helpful--I think using the event.pageXY and the Dimensions plugin I should be able to write something that does what I'm looking for. Thanks again. Jamie On Oct 1, 4:29 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > The only set of X/Y properties that jQuery supports

[jQuery] Re: A Very Simple tree menu

2007-10-01 Thread Gerson Goulart
Jörn Zaefferer escreveu: > > Gerson Goulart schrieb: >> Hi all! >> >> I'm not a programmer (and don't speak English), but I'm trying to do >> both. =D >> >> I'm looking for a simple solution to do a simple tree menu like the >> Windows Explorer during some days. All solutions I find are terible, >

[jQuery] OT: jQuery Presentation Suggestions?

2007-10-01 Thread sgrover
Hi all. Sorry for the OT, but it IS jQuery related.. :) I'm giving a presentation at COSSFEST (http://cossfest.ca/schedule) at the end of the month. The title of the presentation is "Rapid Web 2.0 JavaScript Development with jQuery". I'm in the process of building the presentation, and thou

[jQuery] Add Table row

2007-10-01 Thread camilo_u
Hi, I would like to use jQuery to add a row with form fields of a table to the end of the table, the idea is to duplicate the previous one it with all of the form fields (drop downs, input fields, hidden fields, etc.) changing the input ID of each input, clearing the input values and adding a "D

[jQuery] Re: A Very Simple tree menu

2007-10-01 Thread sgrover
I can add my support to Jorn's treeview plugin. We're using it and it's working great. Our needs are for a simple text navigation tree, but will later grow to include images/icons with the links. Some of the recent changes to the treeview (in SVN) solved our navigation problems with a "navi

[jQuery] 3,6,9,12...

2007-10-01 Thread Adam Stacoviak
I'm trying to find out how to add a class to every third occurrence of an element. Basically, I have a DIV with an undefined number of DIVs inside of it, and I want to add a class to every third DIV

[jQuery] Re: iterating through xmlResult

2007-10-01 Thread Lee Hinde
Thanks. I love expanding my horizons. :-) On 10/1/07, Robert Koberg <[EMAIL PROTECTED]> wrote: > > On Mon, 2007-10-01 at 12:12 -0700, Lee Hinde wrote: > > Hi; > > > > I have questions about selectors and .each. > > > > Given this result: > > > > > recordsinselection="2" size="2" sortfield="" tab

[jQuery] unsubscribe me please

2007-10-01 Thread Travis Johnston
unsubscribe me please

[jQuery] Re: jquery math functions?

2007-10-01 Thread Klaus Hartl
FrankTudor wrote: Is there a place that I can see the math functions available? Frank That's POSJ (Plain Old Simple JavaScript), no need for jQuery here, for example: var max = Math.max(1, 2); --Klaus

[jQuery] Re: jquery math functions?

2007-10-01 Thread Wizzud
Google for 'javascript reference Math object'. FrankTudor wrote: > > > Is there a place that I can see the math functions available? > > Frank > > > -- View this message in context: http://www.nabble.com/jquery-math-functions--tf4551431s27240.html#a12989165 Sent from the jQuery General

[jQuery] Re: simple browser check (need help)

2007-10-01 Thread Wizzud
if(!$.browser.msie){ .//bug out } FrankTudor wrote: > > > I have a tool that only operates under IE > > So all other browser users get an alert here is my code...but it > doesn't work... > > Can someone get me straightened out? > > > $(document).ready(function() > { > if($

[jQuery] Re: A Very Simple tree menu

2007-10-01 Thread Jörn Zaefferer
Gerson Goulart schrieb: Hi all! I'm not a programmer (and don't speak English), but I'm trying to do both. =D I'm looking for a simple solution to do a simple tree menu like the Windows Explorer during some days. All solutions I find are terible, in my opinion (including dtree ) :p I decided

[jQuery] Slightly OT: another way to gzip javscript code

2007-10-01 Thread Stephan Beal
This just popped up on digg, and i thought it might interest some of you: http://code.trymbill.is/index.php/2007/10/01/compress-javascript-gzip/ It presents a different way of compressing javascript code.

[jQuery] jquery math functions?

2007-10-01 Thread FrankTudor
Is there a place that I can see the math functions available? Frank

[jQuery] Re: Catch a click event before the DOM is loaded

2007-10-01 Thread Remy Sharp
On Oct 1, 9:06 pm, Guy Fraser <[EMAIL PROTECTED]> wrote: > Couldn't you just use this: > > http://jquery.com/plugins/project/elementReady Not when there are more than a few buttons on the page. This plugin works fine if your button has a particular Id attached to it, some of the pages we were wo

[jQuery] simple browser check (need help)

2007-10-01 Thread FrankTudor
I have a tool that only operates under IE So all other browser users get an alert here is my code...but it doesn't work... Can someone get me straightened out? $(document).ready(function() { if($.browser.[safari, opera, mozilla]) { $( fun

[jQuery] Re: need a simple jquery alert or prompt example with ok or cancel choices

2007-10-01 Thread Frank Tudor
I got it figured out...thanks for the reply On 10/1/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote: > > Frank, are you using http://trentrichardson.com/Impromptu/? > > Or are using using the basic prompt command? > > If you are using the plugin, you need to set up a call back that will > handle y

[jQuery] Re: Pulling in a specific #div with jqModal

2007-10-01 Thread Jack Killpatrick
I haven't used it yet, but if I've read things correctly, you can use a selector in a native jquery .load() call, which would get the div from the file on the server. See here: http://docs.jquery.com/Ajax/load#urldatacallback example snippet: $("#links").load("/Main_Page #p-Getting-Started

[jQuery] Re: editease - my first plugin endeavor

2007-10-01 Thread [EMAIL PROTECTED]
Thanks for the comments people, I know this idea wont set the world on fire, as Joel mentioned, it fits a niche (in a the true sense of the word). The independent file manager with upload is almost done which I will add in shortly. But for a question a little off topic. Looks like the only way

[jQuery] fading image replace?

2007-10-01 Thread jezmck
I have a webcam, currently uploading images as per motion detection. The latest image is always called Webcam.jpg, the next most recent is Webcam1.jpg, etc. I'd like to show the latest few, and replace each with the latest version of the file every minute or so. I can simply update the src (using

[jQuery] A Very Simple tree menu

2007-10-01 Thread Gerson Goulart
Hi all! I'm not a programmer (and don't speak English), but I'm trying to do both. =D I'm looking for a simple solution to do a simple tree menu like the Windows Explorer during some days. All solutions I find are terible, in my opinion (including dtree ) :p I decided to do a very simple tree m

[jQuery] Re: A Very Simple tree menu

2007-10-01 Thread Gerson Goulart
Oh my God! I forgot of introduce myself :p My name is Gerson Goulart, I am a brazilian designer. I signingned this list because I want a lot learn javascript and I liked very much the jQuery library (that I discovered yesterday) :D I know something about HTML, CSS, web-standards, etc. and I'm h

[jQuery] Undefined selector returning the document

2007-10-01 Thread Jake
I am having a problem with jQuery (2.1.1). I have a set of variables defined and depending on circumstances some may be undefined. A simple stupid example: var element_id; var the_element = jQuery(element); the_element.click(function () { alert('Hello World'); }); The result of this

[jQuery] Re: Linking to Remote iframe

2007-10-01 Thread flanagan
After working on this all weekend, I finally came to a satisfactory outcome that is as simple as possible using the concept I asked about above. I ended up using Matthias Bank's getUrlParam (amazingly simple and well-done) plugin: http://www.mathias-bank.de/2007/04/21/jquery-plugin-geturlparam-ve

[jQuery] jshArea - JavaScript Hacking Area

2007-10-01 Thread jshArea
Hello! Can I load the jQuery library in my jshArea? What is the best way? (thanks) Background: type this code in your browser address bar: javascript:function fun(){ var win = window.open(document.location); win.document.write("jshArea - JavaScript Hacking Area by Davide Rognonialert(opener)")

[jQuery] Re: Clear Input Search Box?

2007-10-01 Thread Guy Fraser
Kevin Scholl wrote: > http://jquery.com/plugins/project/toggleval > http://scott.sauyet.com/thoughts/archives/2007/03/31/overlabel-with-jquery/

[jQuery] Re: Catch a click event before the DOM is loaded

2007-10-01 Thread Guy Fraser
Remy Sharp wrote: > I've recently been working on a project where the page is complex > enough that the DOM would not have loaded before the user had spotted > our 'big red button' - and clicked away. > Couldn't you just use this: http://jquery.com/plugins/project/elementReady

[jQuery] Re: Plug-in Developers...

2007-10-01 Thread Guy Fraser
One thing I learnt recently is that just because you can use jQuery doesn't mean the innards of your plugin should be one big chain of jQuery methods. For example, see Scott's Overlabel blog page... Scott's original version used plain JS to do things, however it was a bit difficult to read:

[jQuery] Re: iterating through xmlResult

2007-10-01 Thread Robert Koberg
On Mon, 2007-10-01 at 12:12 -0700, Lee Hinde wrote: > Hi; > > I have questions about selectors and .each. > > Given this result: > > recordsinselection="2" size="2" sortfield="" tableid="2" > tablename="Person"> > > 3 > 1 > Molly > Hinde > Adult Supervision >

[jQuery] More on Rounded Corners

2007-10-01 Thread [EMAIL PROTECTED]
I know we've been discussing rounded corners a lot, but I just found a recent solution for anti-aliased rounded corners using jQuery. These guys do a pretty good job: http://blue-anvil.com/archives/anti-aliased-rounded-corners-with-jquery Hope it's helpful, Matt PS: Make sure to double check o

[jQuery] Re: iterating through xmlResult

2007-10-01 Thread Lee Hinde
On 10/1/07, Lee Hinde <[EMAIL PROTECTED]> wrote: > On 10/1/07, Lee Hinde <[EMAIL PROTECTED]> wrote: > > Hi; > > > > I have questions about selectors and .each. > > > > Given this result: > > > > > recordsinselection="2" size="2" sortfield="" tableid="2" > > tablename="Person"> > > > >

[jQuery] Re: Events

2007-10-01 Thread John Resig
The only set of X/Y properties that jQuery supports is pageX/pageY, which, I think, will help you out. More information: http://docs.jquery.com/Events_%28Guide%29#event.pageX.2FY --John On 10/1/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I want to access the event properties layerX and

[jQuery] Re: How to add/remove dynamic blocks of html

2007-10-01 Thread James Dempster
I think this it what your trying todo... $(this).parent().append(["", "x", ""].join("")); Much nicer to split the lines making it more readable. $(this).parent().append([ "", "x", "" ].join("")); hope this helps On Oct 1, 5:29 pm, Matt <[EMAIL PROTECTED]> wrote: > Hi everyone,

[jQuery] Re: iterating through xmlResult

2007-10-01 Thread Lee Hinde
On 10/1/07, Lee Hinde <[EMAIL PROTECTED]> wrote: > Hi; > > I have questions about selectors and .each. > > Given this result: > > recordsinselection="2" size="2" sortfield="" tableid="2" > tablename="Person"> > > 3 > 1 > Molly > Hinde > Adult Supervision

[jQuery] Re: What plugins are ready for prime time

2007-10-01 Thread Jörn Zaefferer
David Pollak schrieb: although I had to rewrite all the $ references to jQuery so I could fit Scriptaculous, jQuery, and BlockUIin the same browser. Why that? BlockUI uses a handy trick to be able to use $ while not relying on the global variable. Details: http://docs.jquery.com/Plugins/Au

[jQuery] Re: [SITE SUBMISSION] Kuantic.com

2007-10-01 Thread Rick Faircloth
Nice looking site, Jay... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jay Salvat Sent: Monday, October 01, 2007 12:26 PM To: jQuery (English) Subject: [jQuery] [SITE SUBMISSION] Kuantic.com Hi, My work on my company's website, using l

[jQuery] Re: [SITE SUBMISSION] Kuantic.com

2007-10-01 Thread Rey Bango
Hi Jay, Can you provide a description of the site? Rey Jay Salvat wrote: Hi, My work on my company's website, using lot of jQuery and some homemade plugins :) http://www.kuantic.com/ Jay.

[jQuery] Re: Trying to get a handle on xml returned object

2007-10-01 Thread Robert Koberg
Hi, You can use standard DOM properties and method. For example, since you have an XMLDocument you can ask for the root element: var myRootXMLElement = myXMLDoc.getDocumentElement(); or get element by their local name: var allParas = myXMLDoc.getElementsByTagName("p"); Check out: http://www.w

[jQuery] Re: document.ready in an ajax response

2007-10-01 Thread Curtis Spencer
Arrix, Thanks for the reply. So, in an ajax response snippet, does it make the most sense just to make javascript calls directly. Could there be an issue with the DOM in the response snippet not being fully loaded before the script functions are called. I tried doing something like this in the

[jQuery] Re: How to add/remove dynamic blocks of html

2007-10-01 Thread Matt
Hi everyone, I have been using FlyDOM, and am trying to convert some of that code to use the jQuery append, after reading what Mike wrote about better performance. I am trying to dynamically insert some attributes. However I'm getting a syntax error, so I think I'm not understanding something simp

[jQuery] Re: Clear Input Search Box?

2007-10-01 Thread Guy Fraser
Danjojo wrote: > I am trying to clear an input search box's value. > If you are just wanting to display a prompt inside the search box, eg. "search text", that will dissapear when the box receives focus, use the overlabel plugin... http://scott.sauyet.com/thoughts/archives/2007/03/31/overl

[jQuery] [SITE SUBMISSION] Kuantic.com

2007-10-01 Thread Jay Salvat
Hi, My work on my company's website, using lot of jQuery and some homemade plugins :) http://www.kuantic.com/ Jay.

[jQuery] Events

2007-10-01 Thread [EMAIL PROTECTED]
I want to access the event properties layerX and layerY. I found that these only work the way I would have expected in Firefox. In IE I need to use the offsetXY properties to get what I want, but then in Opera and Safari these properties are giving me the XYoffset values of the elements within the

[jQuery] Superfish animation out?

2007-10-01 Thread Lewis
Howdy Just a quick question: I have a reasonable understanding of CSS and HTML - but am very much a 'noob' when it comes to the mighty JQuery (but i'm getting there - slowly!) - I was wondering if anyone has any ideas on creating the reverse drop down animation on mouse out? i.e. rollover the men

[jQuery] Re: Display problem with Jquery show & hide - slide in & out functions

2007-10-01 Thread wizofoz777
Hi thnks for your reply, I am using ie7. The issue is occuring just after a slide out, seems to me that the div is actually reappearing for half a second just afterwards... I have no idea why is so, I have seen other examples using the slide out effect without seeing the same issue that I see on m

[jQuery] Re: safari (win, mac) issues with fadeIn + callback

2007-10-01 Thread bytte
I have the latest jQuery version installed. And the problem occurs on the stable 2.0 version of Safari on Mac. Too bad. Anyone else that has any idea? On 1 okt, 05:26, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > You should update your jQuery version... > i had version 1.1.3.1 and it didn't w

[jQuery] What plugins are ready for prime time

2007-10-01 Thread David Pollak
Howdy, Yes... it's me again... the guy who always complains about stuff. I love the base jQuery code. It feels very right. And it has a very functional flavor which suits Scala and lift very well. But I need some functionality on top of the base jQuery stuff. I need drag and drop, modal dial

[jQuery] Re: jQuery (Superfish) conflicting with swfobject

2007-10-01 Thread Brett
Sorry Joel, I should point out what version of Internet Explorer I'm using too - It is Internet Explorer 6, with Windows XP sp2. I have been able to find my problem - internet explorer with its dastardly cache! The link above points to one with two working dropdowns, on project and company. The

[jQuery] slider bug on IE6

2007-10-01 Thread Matt
Hi, Just to let you know, if it can help someone else, i found this bug with ui.slider.js on IE6 (it's a simple syntax error but it obviously causes the script stopping executed): http://dev.jquery.com/ticket/1762#preview cheers -- Matthias ETIENNE

[jQuery] jquery xml parsing issue

2007-10-01 Thread HelloGoodbye
hello dear jquery community. recently i've run into a really strange problem when parsing xml received via ajax; XMLstructure: ... the xml file is well structured as i've checked it a couple of times myself. now the code: $.ajax({type: "POST", url: loc

[jQuery] Re: Display problem with Jquery show & hide - slide in & out functions

2007-10-01 Thread wizofoz777
I'M on IE7. It seems like the flashing occurs right after the slide up function has been called, after it slides, it flashes very fast, but you should be able to see it... I have seen other examples of sliding effects that are not doing this... So maybe I am doing something wrong... Thanks

[jQuery] iterating through xmlResult

2007-10-01 Thread Lee Hinde
Hi; I have questions about selectors and .each. Given this result: 3 1 Molly Hinde Adult Supervision 2 1 Lee Hinde Night Custodial Staff what's the best way to iterate through to build table rows from

[jQuery] Pulling in a specific #div with jqModal

2007-10-01 Thread will
Greetings jQuery Land, I'd like load a specific part of another page into a jqModal box. like: $('#mybox').jqm({ajax: 'included.php#this_particular_div_only'}); Any hope for me and mine? Thank you, Will

[jQuery] Re: Trying to get a handle on xml returned object

2007-10-01 Thread Lee Hinde
Firebug is great for this sort of stuff; it'll show you exactly what is coming back. http://www.getfirebug.com/ On 9/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi, > > I've been trying to getsome XML data out of a jQuery AJAX request and > I'm having trouble. Problem is, I can't re

[jQuery] Timeout on a .getScript()

2007-10-01 Thread Tane Piper
Hey folks, In my app, what I have on pageload is a .getScript() that loads in the Ajax API for recaptcha (as can be seen at http://pastemonkey.digitalspaghetti.me.uk). I also use blockUI on this site, and I have hit a snag, in that if the getScript fails for whatever reason, it doesn't time out

[jQuery] Re: javascript paint like drawing tool

2007-10-01 Thread John Beppu
http://caimansys.com/painter/ ^-- This isn't build on jQuery, but it might give you something to start with. On 9/30/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Hi, > > I'm not able to find a good (preferably open source) paint-like > drawing tool & thought maybe there is one built on

[jQuery] Re: Forms with asp.net

2007-10-01 Thread seedy
asp.net controls should not interfere with the forms plugin. Do you have a demo page we could take a look at? Right not Im not even 100% sure what your problem you are having. Sharique Farooqui wrote: > > > Right now I'm not using asp.net Ajax. > I'm using some asp.net controls on it. > Is t

[jQuery] [NEWS] Adobe AIR Beta 2 Released

2007-10-01 Thread Rey Bango
What's new: http://labs.adobe.com/wiki/index.php/AIR:Developer_FAQ#What_are_some_of_the_features_included_in_Adobe_AIR_Beta_2.3F * System Tray icon/Dock Bar Bounce * Synchronous database API * Native menus * Drag and drop enhancements including bitmap support * Windowing impr

[jQuery] Re: Plug-in Developers...

2007-10-01 Thread Rick Faircloth
Thanks for your work on your plug-ins and documentation, Ben. I know it's very *easy* to forget what the "$" means or to get the path wrong for a js file link, or even to forget to include a link at all! When introducing jQuery and plug-ins, they key is *baby steps* all the way. Like a "j

[jQuery] Re: Forms with asp.net

2007-10-01 Thread Sharique
Right now I'm not using asp.net Ajax. I'm using some asp.net controls on it. Is this causing problem? On Sep 29, 5:15 pm, seedy <[EMAIL PROTECTED]> wrote: > I've never used the update panel, so im not sure of all its functionality. > The forms plugin should let you submit a form through an ajax r

[jQuery] on hover/click change textbox to select list

2007-10-01 Thread Sharique
I have this HTml code Select City list here and a php file (citylist.php)which return list of cities. What I want is when I click City list textbox must be changes to select list, with options from citylist.php.

[jQuery] Re: Plug-in Developers...

2007-10-01 Thread Tane Piper
One massive tip for developing plugins, is to make them futureproof and compatible with the jQuery.noConflict() is to develop your plugin inside a closure: (function($){ ... })(jQuery); This means you can use. $ inside your plugin and never worry about it not working with jQuery. Since I u

[jQuery] Re: Plug-in Developers...

2007-10-01 Thread Benjamin Sterling
Rick, I agree with you and as far as my plugins and myself are concerned, it is a learning experience for me also. Almost all my code prior to coming upon jQuery has been "for my eyes only" and never thought twice about someone else needing to understand what I heck I am trying to do. But since d

[jQuery] Re: Does JQuery 1.2 solve the thickbox positioning problem when scrolling?

2007-10-01 Thread Christopher Jordan
If anyone cares, I think my problem here was that I didn't have the latest code for thickbox (even though, the version numbers were the same...:o/) Anyway, I found that my tb_position function looked like this: function tb_position() { $("#TB_window").css({marginLeft: '-' + parseInt((TB_WIDTH / 2)

[jQuery] Plug-in Developers...

2007-10-01 Thread Rick Faircloth
Good morning, all. After seeing that some who are new to jQuery wrestle with trying to get something working, I had the idea that perhaps we need a "Quick Start Guide" for jQuery generally and plug-ins specifically. What experienced users can grapple with the sometimes overwhelming amou

[jQuery] Re: jQuery bug, or ?

2007-10-01 Thread Benjamin Sterling
See, its was from watching all that x video On 10/1/07, spinnach <[EMAIL PROTECTED]> wrote: > > > you should see x then :) .. > > and sorry, but the error seems to be related to IE WebDeveloper, when > typing the code in the console it didn't work.. when i put it in the > head

[jQuery] Re: jQuery bug, or ?

2007-10-01 Thread spinnach
you should see x then :) .. and sorry, but the error seems to be related to IE WebDeveloper, when typing the code in the console it didn't work.. when i put it in the head of the html file, it worked.. so thanks for your time, but it seems the problem was not related to jquery after a

[jQuery] Re: jQuery bug, or ?

2007-10-01 Thread Benjamin Sterling
WOW... is x better then xxx :) Two more questions: Have you tried Giovanni's suggestion and does that give you the same error? Can you post a live example? On 10/1/07, spinnach <[EMAIL PROTECTED]> wrote: > > > it's without any plugins or other code on the page, i have IE > WebDeveloper v2 to

[jQuery] Re: jQuery Form Plugin fiasco

2007-10-01 Thread Rey Bango
Roso, If you want assistance on a plugin from someone that's volunteered their time to build it, document it and post it, I'd suggest toning down your messages and politely asking for help. Mike Alsup, jQuery team member and author of the Form plugin, is a really cool and understanding guy a

[jQuery] Re: jQuery bug, or ?

2007-10-01 Thread spinnach
it's without any plugins or other code on the page, i have IE WebDeveloper v2 toolbar installed, and when i just type that in the console i get this error: Error Expected ')' http://x.com/ (line 1) dennis. Benjamin Sterling wrote: Spinnach, That should work, I am using just that in

[jQuery] Re: jQuery Form Plugin fiasco

2007-10-01 Thread wattaka
I might be better to ask for support concerning a specific problem, this is a very helpful forum. Besides I think Mikes site and plugins one of the best displayed and documented, I´m surprised that you have problems with them. On Oct 1, 6:17 am, roso <[EMAIL PROTECTED]> wrote: > The jQuery Form

[jQuery] Re: jQuery bug, or ?

2007-10-01 Thread Benjamin Sterling
Spinnach, That should work, I am using just that in a number of plugins, is there any other code on the page? Can you post the error? On 10/1/07, Giovanni Battista Lenoci <[EMAIL PROTECTED]> wrote: > > > spinnach ha scritto: > > > > this returns an error in IE7, works fine in firefox, is this a bu

[jQuery] Re: need a simple jquery alert or prompt example with ok or cancel choices

2007-10-01 Thread Benjamin Sterling
Frank, are you using http://trentrichardson.com/Impromptu/? Or are using using the basic prompt command? If you are using the plugin, you need to set up a call back that will handle you true, false. If you are using the prompt command, I would suggest you use the confirm instead (http://www.tiza

[jQuery] need a simple jquery alert or prompt example with ok or cancel choices

2007-10-01 Thread FrankTudor
I have a jquery script that gives the user a prompt and a choice to make sure they want to delete a value from a datasource. Here is my code... It prompts funny...and it goes ahead and processes anyways even if you select cancel.. Can someone fix me up here? $(document).ready(function

[jQuery] Re: Does JQuery 1.2 solve the thickbox positioning problem when scrolling?

2007-10-01 Thread Chris Jordan
I'm having this same problem. I have a very long list of items that are each clickable. When the user clicks on one it pops up a thickbox that allows the user to edit that item. However, when the user clicks on items far down in the list, they appear to get no thickbox. After a little investigatio

[jQuery] Re: jQuery bug, or ?

2007-10-01 Thread Giovanni Battista Lenoci
spinnach ha scritto: this returns an error in IE7, works fine in firefox, is this a bug or something i overlooked ? var $div = $(''); Try var $div = $(''); $div.addClass('fileinputs'); Giovanni

[jQuery] jQuery bug, or ?

2007-10-01 Thread spinnach
this returns an error in IE7, works fine in firefox, is this a bug or something i overlooked ? var $div = $(''); dennis.

[jQuery] Site: slickdeals.net

2007-10-01 Thread Quin Hoxie
For those not aware, slickdeals is one of the most popular deal news sites around. >From what I can tell, they are primarily using jquery in their toggling of detail on the individual deals and the days. http://www.slickdeals.net/

[jQuery] Re: Catch a click event before the DOM is loaded

2007-10-01 Thread Remy Sharp
It really depends on the solution you're working on. In this particular case, it would odd if the button had just appeared, and on some pages there's a button for each row on a large table of data. Disabling it first then enabling is a better approach, but the solution I went for, still register

[jQuery] Re: Clear Input Search Box?

2007-10-01 Thread Karl Swedberg
On Oct 1, 2007, at 9:36 AM, Danjojo wrote: Thank you! IE 7 throws an error "something about not supporting an object".. FireFox is happy and FireBug does not display an error. It might work better to use .val('') instead of .attr('value','') Now if someone were to type in a search word

[jQuery] Re: OT: Mailing List Problem?

2007-10-01 Thread Richard D. Worth
I've seen this happen now and then since I've been on this list (about 4 months). Not every day, more like once or twice a week. It seems like the whole list gets clogged for a while (2-6, occasionally 8+ hrs), then a flood of messages all come in at once. So it's not that every email to the list t

[jQuery] Re: Clear Input Search Box?

2007-10-01 Thread Kevin Scholl
http://jquery.com/plugins/project/toggleval On Oct 1, 8:38 am, Danjojo <[EMAIL PROTECTED]> wrote: > I am trying to clear an input search box's value. > > When the page loads the value is set. I.e.: > > style="width: 100px;" value="Search term or part #"> > > I want to set it to blank when the u

  1   2   >