[jQuery] Post Form to Two Servers

2009-03-25 Thread Glen Lipka
I have a form with a normal action to submit the data. However, I want to submit SOME of the data to another form on another server. How does one do this? Thanks, Glen Lipka

[jQuery] Ben Nadel jQuery Presentation

2009-02-12 Thread Glen Lipka
http://www.bennadel.com/blog/1492-An-Intensive-Exploration-Of-jQuery-With-Ben-Nadel-Video-Presentation-.htm Very interesting presentation, especially what he talks about in Slide 4 about his initial fears using jQuery and slide5 about the developer point of view. This is very much a backend

[jQuery] Corners - jQuery Port needed

2008-11-04 Thread Glen Lipka
This is a really neat technique.http://www.schillmania.com/projects/dialog2/ Unfortunately, it isn't jQuery. Anyone want to try and port the idea? I wish canvas could just do this without the need for a graphic. Glen

[jQuery] Re: Grading a list (1-10)

2008-10-29 Thread Glen Lipka
How about using the sortables part of jQuery UI? http://docs.jquery.com/UI/Sortables Glen On Wed, Oct 29, 2008 at 7:09 AM, Caoimh [EMAIL PROTECTED] wrote: Hi, I have a list of 10 items and I wish the user to be able to grade each one from 1-10. I need to make sure not more than one item has

[jQuery] Re: How to select a specific descendant of curent object

2008-09-08 Thread Glen Lipka
Wouldnt this work too?$(#box .grandchild). Glen On Mon, Sep 8, 2008 at 8:27 AM, Ca-Phun Ung [EMAIL PROTECTED] wrote: $('#box').find('.grandchild'); Greeg wrote: div id=box span class=child span class=grandchildhi grandma/span /span /div my question is how reach the

[jQuery] Re: mootools and jquery

2008-08-18 Thread Glen Lipka
Is this page public? Seeing it would help. There are often plugins that can do a bunch of stuff for you with little code. (Im not that technical either, which is why I love plugins) Glen On Mon, Aug 18, 2008 at 4:24 AM, Hoi [EMAIL PROTECTED] wrote: I'm completely new to jquery (and not

[jQuery] jQuery in the wild

2008-07-18 Thread Glen Lipka
http://www.sears.com/shc/s/s_10153_12605_Appliances_Dishwashers_Built-In+Dishwashers#viewItems=84pageNum=1sortOption=ORIGINAL_SORT_ORDER Sears' using the latest version. They even made their own plugins. http://content.sears.com/shared/js/quickView.js Wow, they have 22 scripts totallying 460k.

[jQuery] Re: Shadowbox 2.0rc1

2008-07-01 Thread Glen Lipka
Is there a homepage for this plugin? I cant seem to find it. Glen On Tue, Jul 1, 2008 at 9:44 AM, Michael J. I. Jackson [EMAIL PROTECTED] wrote: If you're using the Shadowbox jQuery plugin, it has been updated. The new version features increased flexibility and stability for various media

[jQuery] Corners not working in IE7

2008-06-29 Thread Glen Lipka
Im trying to get curvy corners to work, but for some reason it doesn't work in IE7. http://blue-anvil.com/jquerycurvycorners/test.html Site: http://blog.sparkt.com/ Any ideas? Im getting bleary-eyed. Thanks Glen

[jQuery] Re: One button to do two opposite tasks.

2008-06-27 Thread Glen Lipka
Try using Toggle, rather than Click. That should work. Glen On Fri, Jun 27, 2008 at 3:28 PM, Cristian [EMAIL PROTECTED] wrote: HI, I'm using the code below to create a hover effect. When the user puts the mouse over a div box1 a list of items appear, and when it goes out, the list

[jQuery] Re: One button to do two opposite tasks.

2008-06-27 Thread Glen Lipka
Also you can do this: $(document).ready(function() { $(#box1).toggle(function() { $(.ul-list).show(); },function() { $(.ul-list).hide() }); }); hide/show do what you need. Glen On Fri, Jun 27, 2008 at 4:51 PM, Glen Lipka [EMAIL PROTECTED

[jQuery] Re: Search for a div tag

2008-06-27 Thread Glen Lipka
Do these elements have a class or are they random elements that are 143px wide? Glen On Fri, Jun 27, 2008 at 8:10 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Greetings, I am new to JQuery and looking into this. We are trying to find a way to create a client side javascript that looks

[jQuery] Re: jQuery Camp 2008 to be held at The Ajax Experience on Sept. 28th.

2008-06-26 Thread Glen Lipka
I asked about changing the flight. It would be $150 + $50 for jQuery and another night at the hotel (not sure how much that is). Too rich for me unfortunately. Sorry man, I wish I could be there. Are you going to TAE too? Glen On Thu, Jun 26, 2008 at 9:05 AM, Rey Bango [EMAIL PROTECTED]

[jQuery] Neat site using jQuery

2008-06-25 Thread Glen Lipka
http://photoblog.flanisoft.at/ It was one of the featured on SmashingMagazines content for style switching. Lot's of nifty effects. http://www.smashingmagazine.com/2008/06/25/style-switchers-contest-results/ I bet a bunch of these use jQuery. Glen

[jQuery] Re: Ensure Textarea has been read.

2008-06-13 Thread Glen Lipka
Does this help? I made it a while ago, but it should get you your answer. http://www.commadot.com/jquery/scrollEnable.php Glen On Fri, Jun 13, 2008 at 11:06 AM, Ariel Flesler [EMAIL PROTECTED] wrote: Huh.. Can't get into debugging it myself. You can try to pull this out yourself. or

[jQuery] Re: What point i should take care while upgrading to jQuery 1.2.6

2008-06-13 Thread Glen Lipka
This is kind of an impossible question to be specific without knowing what you are doing. However, you should treat it like upgrading anything. Read the docs, and test. http://docs.jquery.com/Release:jQuery_1.2.6 One thing that I noticed is the inclusion of dimensions in the core. That means

[jQuery] Re: ext js-like dropdown box in jQuery?

2008-06-10 Thread Glen Lipka
Maybe this one? http://jquery.bassistance.de/autocomplete/demo/ Glen On Tue, Jun 10, 2008 at 5:04 PM, Adam Weis [EMAIL PROTECTED] wrote: Have you seen the jNice plugin? http://www.whitespace-creative.com/jquery/jNice/ -Adam On Tue, Jun 10, 2008 at 5:05 PM, Ettiene [EMAIL PROTECTED]

[jQuery] jQuery and Information Architecture

2008-06-04 Thread Glen Lipka
I had written something a while back on IA using jQuery for the purpose of a book. The book is in hibernation, but I am fond of the content. It shows how to use IA techniques and jQuery to make your user happier and more productive. http://www.commadot.com/book/UX/UX-Tabs.pdf I'm not looking

[jQuery] Re: Cornerz 0.4

2008-06-03 Thread Glen Lipka
Looks cool. Great work. Wish list: (Because I can't help myself) How about shadows? This script might be good for reference. http://www.netzgesta.de/corner/ Again, this is great. :) Thanks! Glen On Tue, Jun 3, 2008 at 10:05 AM, weepy [EMAIL PROTECTED] wrote: seems to be a problem with

[jQuery] Re: [ANNOUNCE] jFlip plugin

2008-06-03 Thread Glen Lipka
Nice! I like it very much. Glen On Tue, Jun 3, 2008 at 2:55 PM, Mauro Lizaur [EMAIL PROTECTED] wrote: On Tue, Jun 3, 2008 at 6:35 PM, Scott Sauyet [EMAIL PROTECTED] wrote: Renato Formato wrote: I've just released the jFlip plugin, a plugin to make unobtrusive flipping page image

[jQuery] Re: Shadow jQUery

2008-05-28 Thread Glen Lipka
The demo doesn't seem to work. Not sure. Glen On Wed, May 28, 2008 at 9:35 AM, owen [EMAIL PROTECTED] wrote: Is this obsolete? http://docs.jquery.com/UI/Shadow -- Owen

[jQuery] Re: MOOTOOLS or JQuery

2008-05-21 Thread Glen Lipka
Just about everyone here likes jQuery. ;) A quick googling shows a bunch of links to comparisons. http://www.google.com/search?hl=enq=jquery+vs+mootoolsbtnG=Google+Search I would also suggest trying a couple of simple demos in each one. I make alot of demos here: http://commadot.com/jquery I

[jQuery] Re: [SITE] ShareThis

2008-05-13 Thread Glen Lipka
Interestingly, they use MooTools for the script itself and jQuery for their public site. I wonder why the difference? Glen On Mon, May 12, 2008 at 2:57 PM, Rey Bango [EMAIL PROTECTED] wrote: ShareThis uses jQuery http://sharethis.com/ Rey...

[jQuery] Re: Basic Selectors Question

2008-05-13 Thread Glen Lipka
I whipped up a demo. http://www.commadot.com/jquery/selectorNestedTable.php Does this work for you? Glen On Mon, May 12, 2008 at 11:55 PM, PaulF [EMAIL PROTECTED] wrote: Hi, I have what I think is probablt a pretty easy question, but I have tried numerous selctors without getting the

[jQuery] Re: need some help with selecting text nodes

2008-05-07 Thread Glen Lipka
. Thanks for your insight though. On May 6, 9:28 am, Glen Lipka [EMAIL PROTECTED] wrote: I tried to cut corners by skimming your html. I see it now. The divs close and the text is after the div. This is really strange HTML to me. Why not just put the text inside the div? Or just wrap

[jQuery] Re: Need help with hover and fadein and fade out

2008-05-07 Thread Glen Lipka
Does this help? http://commadot.com/jquery/hoverFade.php Maybe if you post something in the ballpark, we could help troubleshoot it? Glen On Tue, May 6, 2008 at 5:48 PM, Aaron [EMAIL PROTECTED] wrote: Can you give me an example code of what I need to do to get a table to fade in above the

[jQuery] Re: Need help with hover and fadein and fade out

2008-05-07 Thread Glen Lipka
to look at their photo albums without loading a new page ect. On May 7, 1:34 pm, Glen Lipka [EMAIL PROTECTED] wrote: Does this help?http://commadot.com/jquery/hoverFade.php Maybe if you post something in the ballpark, we could help troubleshoot it? Glen On Tue, May 6, 2008 at 5:48 PM

[jQuery] Re: need some help with selecting text nodes

2008-05-06 Thread Glen Lipka
.contains() and [nodeType=3] to pick text nodes. not pretty. On May 5, 4:23 pm, Glen Lipka [EMAIL PROTECTED] wrote: $(#tln21 div).text(); Like that? By the way, firebug is very helpful to test our selectors and see what they come up with. Hmm, it would be nice to have a tutorial

[jQuery] Re: need some help with selecting text nodes

2008-05-05 Thread Glen Lipka
$(#tln21 div).text(); Like that? By the way, firebug is very helpful to test our selectors and see what they come up with. Hmm, it would be nice to have a tutorial on how to do this. I can try and whip one up. Glen On Mon, May 5, 2008 at 2:47 PM, darren [EMAIL PROTECTED] wrote: hi Joe,

[jQuery] Custom Build

2008-04-25 Thread Glen Lipka
Are there instructions somewhere of how to make a 1.2.3 jQuery build without the effects (slideDown, FadeIn, etc)? Thanks, Glen

[jQuery] Re: Question: Selecting all the links in div

2008-04-23 Thread Glen Lipka
Are the links being added after the fact? Maybe post the page so we can see. It's probably something simple. You might need the LivejQuery plugin. That is used for when objects are added via JS after the page loads. Glen On Wed, Apr 23, 2008 at 8:14 AM, ripple [EMAIL PROTECTED] wrote: Why

[jQuery] Re: Retrieving the location of the mouse click within the browser window

2008-04-23 Thread Glen Lipka
This might help. http://docs.jquery.com/Tutorials:Mouse_Position I also whipped up a simple demo here: http://www.commadot.com/jquery/mousePosition.php Glen On Wed, Apr 23, 2008 at 6:40 AM, Kalpers [EMAIL PROTECTED] wrote: I am trying to retrieve the location of the mouse click within the

[jQuery] Selector: All links with HREF but not ones that start with #

2008-04-17 Thread Glen Lipka
Want to select: A href=foo.htm but not a href=#foo Would that be this? $(a[href]:not([href^='#'])) Thanks for the help. Glen

[jQuery] Re: Selector: All links with HREF but not ones that start with #

2008-04-17 Thread Glen Lipka
Sorry answered my own question. Whipped up a demo. http://www.commadot.com/jquery/notSelector.php $(a[href]:not([href^=#])) Glen On Thu, Apr 17, 2008 at 3:01 PM, Glen Lipka [EMAIL PROTECTED] wrote: Want to select: A href=foo.htm but not a href=#foo Would that be this? $(a[href]:not([href

[jQuery] Re: Menu: ypSlideOutMenus

2008-03-30 Thread Glen Lipka
Hows this? http://jdsharp.us/jQuery/plugins/jdMenu/ Glen On Sun, Mar 30, 2008 at 5:00 PM, chrbar [EMAIL PROTECTED] wrote: Hello, I use the Dhtml Menu ypSlideOutMenus built by Aaron Boodman. I love this menu and its drop down style, it's customizable and compatible with major browsers

[jQuery] Re: Menu: ypSlideOutMenus

2008-03-30 Thread Glen Lipka
Or this http://users.tpg.com.au/j_birch/plugins/superfish/ Glen On Sun, Mar 30, 2008 at 5:00 PM, chrbar [EMAIL PROTECTED] wrote: Hello, I use the Dhtml Menu ypSlideOutMenus built by Aaron Boodman. I love this menu and its drop down style, it's customizable and compatible with major

[jQuery] Re: How do I remove/delete a function?

2008-02-14 Thread Glen Lipka
This might be helpful. http://jquery.open2space.com/node/55 Glen On Thu, Feb 14, 2008 at 4:38 PM, Jonathan [EMAIL PROTECTED] wrote: Maybe I'm missing something, but how would I remove a jQuery function after it's no longer in use? I'm using an ajax driven site, so the page never is

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

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

[jQuery] Re: Plugin-Request: Boxover?

2008-02-10 Thread Glen Lipka
How about this one: http://plugins.learningjquery.com/cluetip/ It has a mousetracking option. Glen On Sat, Feb 9, 2008 at 2:49 AM, Christian Vogt [EMAIL PROTECTED] wrote: Hey guys, iam using a great piece of JavaScript-Code from time to time, its named BoxOver and is a ToolTip-Script for

[jQuery] Re: How to bind to a dynamically created object

2008-02-02 Thread Glen Lipka
http://brandonaaron.net/docs/livequery/ This will do the trick. Glen On Sat, Feb 2, 2008 at 7:38 AM, wyo [EMAIL PROTECTED] wrote: Isn't it possible to bind to a previous created object? I've the following code for (var i in data) { $('#eintragsliste').append(

[jQuery] Cycle CountUp

2008-02-02 Thread Glen Lipka
Interesting tidbit: I as looking at the questions on Experts-Exchange for JavaScript. http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/ *My discovery:* A big portion of the questions are easy to answer if you use jQuery. One of them turned into a neat demo I whipped up:

[jQuery] Re: newbiish.. must be a better way than what I'm doing to find the next div after the following inputs?

2008-01-31 Thread Glen Lipka
How about parents(div:first) Glen On Thu, Jan 31, 2008 at 8:54 AM, rickcr [EMAIL PROTECTED] wrote: This should be easy, but I'm stumped on this. I can't find examples showing cases where the find 'skips ahead' .. what I want to is find the next div after any of the radio inputs is clicked

[jQuery] Re: How to prevent user from clicking links or buttons while submitting

2008-01-31 Thread Glen Lipka
I whipped up a demo. Not exactly what you had requested, but close. http://commadot.com/jquery/PleaseWaitButton.php I am concerned why the click is appending twice. Does this help? Glen On Thu, Jan 31, 2008 at 7:33 AM, brooke [EMAIL PROTECTED] wrote: Here is the situation. We have a form

[jQuery] Re: clickmenu, change click event to mouseover

2008-01-29 Thread Glen Lipka
Do you have a page you could show? I think this isn't enough detail. Glen On Jan 29, 2008 6:29 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello. Is it possible to change menu trigger event form click to mouseover? It's better for my purposes. Thanks in advance for answer.

[jQuery] Re: Generating a Mousedown event programmatically - similar to click() generation..

2008-01-29 Thread Glen Lipka
http://docs.jquery.com/Events has mousedown, mouseup, mousemove, etc Also check out the plugins for draggables in UI. http://docs.jquery.com/UI Glen On Jan 28, 2008 1:49 PM, edwardbaafi [EMAIL PROTECTED] wrote: Hi.. Does anyone know how one could generate a mousedown event

[jQuery] Re: AJAX file management

2008-01-29 Thread Glen Lipka
Check out the examples in http://extjs.com Specifically the Web Desktop demo, as well as the tree demo. You also might be interested in Adobe AIR, which allows for more integration with the OS. Glen On Jan 29, 2008 8:53 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Can anyone

[jQuery] Re: jQuery CDN Host?

2008-01-29 Thread Glen Lipka
I believe http://code.jquery.com/jquery-latest.js is hosted by Amazon S3. source: http://jquery.com/blog/2007/04/02/google-groups-and-amazon-s3/ Glen On Jan 28, 2008 2:58 PM, dgouldin [EMAIL PROTECTED] wrote: Is there a jQuery CDN host that anybody knows of?

[jQuery] Re: general question

2008-01-23 Thread Glen Lipka
Yes, you would have to use a cookie. This plugin might be helpful. http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/ Glen On Jan 22, 2008 9:03 AM, tlob [EMAIL PROTECTED] wrote: Hi! I have a general question. I do a fadeIn/fadeOut with a big logo on the Homepage. If the user

[jQuery] Re: filter selects and get value...how?

2008-01-21 Thread Glen Lipka
I had whipped up this demo a while back. It shows how to get the selected option. http://commadot.com/jquery/selectBoxNav.php Glen On Jan 21, 2008 2:43 PM, rayfidelity [EMAIL PROTECTED] wrote: Hi, I have array of selects, and i filter them with: $inputs.filter([name='qty[]']). I want to

[jQuery] Re: First posting

2008-01-19 Thread Glen Lipka
jQuery plus its plugins have been the perfect tool for me. I am good at html/css and jQuery just fits in perfectly with those. In general, the jQuery base does alot of specific things. Animate something, change something, add click and hover handlers to things, ajax, etc. The plugins build on

[jQuery] Re: Replacing elements while retaining attributes

2008-01-17 Thread Glen Lipka
I hate that about IE. :( Some of these might be helpful. http://plugins.jquery.com/project/selectboxes http://www.malsup.com/jquery/form/ http://plugins.jquery.com/project/jq-autocomplete Glen On Jan 17, 2008 8:21 AM, Eric Lanehart [EMAIL PROTECTED] wrote: Hello all, I'm trying to

[jQuery] Re: context menu: how to target an item based on 2 id?

2008-01-17 Thread Glen Lipka
Using more than one element with the same ID is not going to work. However, you can use multiple classes to achieve your goal. For instance: td class=allart az Both CSS classes will apply and you can use selectors in jQuery to find what you want. Getting an ID will return only one element.

[jQuery] Re: Is it possible to make a simple fading color rollover effect for text links?

2008-01-17 Thread Glen Lipka
Nice plugin. :) I whipped up a demo. http://commadot.com/jquery/animateBackground.php Is this what you mean? Glen On Jan 17, 2008 8:36 AM, Karl Swedberg [EMAIL PROTECTED] wrote: You might need the color plugin for this: http://plugins.jquery.com/project/color --Karl _

[jQuery] [Off-Topic] Reverse IP Lookup

2008-01-17 Thread Glen Lipka
Sorry, research on this topic has just left me desperate. I need to find a commercial company that provides a Reverse IP Lookup as a web service. So I would pass: 63.82.2.35 and it would spit back ideally: Marketo, Address, City, State, Zip etc. Anyone have experience with this kind of service?

[jQuery] Re: Fade Divs one by one

2008-01-16 Thread Glen Lipka
Maybe this would help? http://www.decodeuri.com/jqueryfxqueues/ Glen On Jan 16, 2008 12:52 AM, Dara Daniyal [EMAIL PROTECTED] wrote: I have table with entries. each entry is contained in the div. What i want to do is to fade them one by one, the slide up the table. is it possible in jquery.

[jQuery] Re: Cycling images based on background-image

2008-01-16 Thread Glen Lipka
There is a cycle plugin, but I wonder if it can work on background images. Maybe ask Mike, the author. www.malsup.com/jquery/*cycle*/ http://www.malsup.com/jquery/cycle/ Otherwise you can use the pause plugin http://blog.mythin.net/projects/jquery.php and just change thebackground.

[jQuery] Re: Is it possible to make a simple fading color rollover effect for text links?

2008-01-16 Thread Glen Lipka
Try the animate function and bind it using hover. http://docs.jquery.com/Effects/animate#paramsoptions http://docs.jquery.com/Events/hover Hover automatically has the on and off stuff so you dont need mouseover, mouseout. If I have time, I can try and whip up a demo. Glen On Jan 16, 2008 6:41

[jQuery] Re: possible to know if page is transitioning ?

2008-01-16 Thread Glen Lipka
The page has a few events that fire right when the page is about to exit. Most common is unload on the body tag. Glen On Jan 16, 2008 9:24 AM, weepy [EMAIL PROTECTED] wrote: Hi - is there an easy way to know if a page is transitioning ? I.e. when I click on a link and the page is waiting to

[jQuery] Re: New to JQuery with error message

2008-01-16 Thread Glen Lipka
That URL doesn't resolve in my browser. Maybe the [2] is messing it up? Glen On Jan 16, 2008 1:34 PM, Jian [EMAIL PROTECTED] wrote: Dear all: I am new to JQuery and encounted this error message just load the latest JQuery library. Following is the code: script type=text/javascript

[jQuery] Re: Element by Name associative array

2008-01-15 Thread Glen Lipka
By array key do you mean the nuber, the index in the array? You can view the actual jQuery object created with a selector using firebug or ms script editor. So for instance in firebug, you click on script on the left. Then add a new watch expression on the right. Put in $(input) and press

[jQuery] Re: How can I switch elements by fades?

2008-01-15 Thread Glen Lipka
Use the fadeOut callback. http://docs.jquery.com/API/1.1/Effects#fadeOut.28_speed.2C_callback_.29 This will start a function when the animation for the fadeOut is finished. Then fadeIn the other one. Glen On Jan 14, 2008 10:22 PM, DeaR [EMAIL PROTECTED] wrote: $(function() {

[jQuery] Re: Adding div

2008-01-15 Thread Glen Lipka
I whipped up a quick demo. It's much easier when you give things classes to hang your hat on. http://commadot.com/jquery/toggleShow.php# Glen On Jan 15, 2008 7:53 AM, Michael [EMAIL PROTECTED] wrote: I have this code so far: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN

[jQuery] Re: translating to jquery

2008-01-14 Thread Glen Lipka
I believe so. The way it's described in the docs is: $(p).unload( function() { alert(Hello); } ); So I think you are in good shape. Glen On Jan 14, 2008 8:35 AM, marcus [EMAIL PROTECTED] wrote: hi. i have a little question... im not quite sure, because i don't know how to find out if

[jQuery] Re: How to create Terms of Service-type message?

2008-01-14 Thread Glen Lipka
Server side is probably safest. To make it interesting to look at try the BlockUI modal. http://www.malsup.com/jquery/block/# Cookie stuff you might find this helpful, http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/ Glen On Jan 14, 2008 12:04 PM, Robert Vidrine [EMAIL PROTECTED]

[jQuery] Re: Countdown - my first plugin

2008-01-13 Thread Glen Lipka
Maybe consider a visual display similar to this: http://commadot.com/jquery/slotMachineEffect.php So that the numbers that countdown don't just blink, they animate. Glen On Jan 12, 2008 3:59 AM, Feijó [EMAIL PROTECTED] wrote: Check it out! http://plugins.jquery.com/project/countdown

[jQuery] Re: Switching Divs

2008-01-09 Thread Glen Lipka
I started work on a demo for this, but It's doing something wrong. http://commadot.com/jquery/animateSwap.php Anyone know why the thing keeps going down the screen? James, this would be easier if the two elements were positioned absolute to begin with. What is their original state? Glen On

[jQuery] Re: Switching Divs

2008-01-09 Thread Glen Lipka
fine. On 1/9/08, Glen Lipka [EMAIL PROTECTED] wrote: I started work on a demo for this, but It's doing something wrong. http://commadot.com/jquery/animateSwap.php Anyone know why the thing keeps going down the screen? James, this would be easier if the two elements were

[jQuery] Re: match element based on CSS value

2008-01-09 Thread Glen Lipka
Whipped up a demo. http://commadot.com/jquery/isCSSRule.php Hope this helps. There might be another way. Glen On Jan 9, 2008 2:01 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: How can I select an element based on it's CSS style value? For example, let's say I have an element absolute

[jQuery] Synchronous JSONP

2008-01-08 Thread Glen Lipka
Right now in 1.2.1 the JSONP method uses an asynchronous call to do it's thing. This sometimes causes a problem when we are sending a call about a click event on a link. The page unloads before the JSONP is finished. Changing it to be optional (async or synchronous) helps fix that problem. Code

[jQuery] Re: Synchronous JSONP

2008-01-08 Thread Glen Lipka
say a while back that you can use the jQuery.extend method to overwrite a default method. I will see if I can dig that up, but that may point you in the right direction in the mean time. On 1/8/08, Glen Lipka [EMAIL PROTECTED] wrote: Right now in 1.2.1 the JSONP method uses

[jQuery] Re: Need

2008-01-07 Thread Glen Lipka
You might better off using CSS instead of the background= for a couple of reasons. td width=90 align=center background=images/rboxbg.jpg becomes td class=col4 red menu td.col4 {width: 90px} td.red {background: #ff url(images/rboxbg.jpg);} Ok, so this would clean up the html ALOT. Now, in

[jQuery] Re: Need

2008-01-07 Thread Glen Lipka
Klaus, Good point. I was just using red for communication/example sake. It should be alert or whatever. Glen On Jan 7, 2008 2:02 PM, Klaus Hartl [EMAIL PROTECTED] wrote: On 7 Jan., 22:40, Glen Lipka [EMAIL PROTECTED] wrote: You might better off using CSS instead of the background

[jQuery] Re: Need

2008-01-07 Thread Glen Lipka
this helps. Glen On Jan 7, 2008 2:04 PM, Glen Lipka [EMAIL PROTECTED] wrote: Klaus, Good point. I was just using red for communication/example sake. It should be alert or whatever. Glen On Jan 7, 2008 2:02 PM, Klaus Hartl [EMAIL PROTECTED] wrote: On 7 Jan., 22:40, Glen Lipka

[jQuery] Re: keyboard sortable list

2008-01-07 Thread Glen Lipka
http://rikrikrik.com/jquery/shortkeys/ Does this work? Glen On Jan 7, 2008 2:34 AM, MaSTeRMinD [EMAIL PROTECTED] wrote: Hello, Im building an app that requires keyboard use and im using jquery for some of the things. I was looking for a plugin that can do exactly this on this page.

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-07 Thread Glen Lipka
This is awesome. I think I might replace the curvy corners on my site with this. I think the canvas method is just too cool. Glen On Jan 7, 2008 4:14 PM, weepy [EMAIL PROTECTED] wrote: Hey, what happened to bulletproof?? :-) It will be :) . In fact it now works on Mac/Safari Regarding

[jQuery] Re: Bullet Proof: Help needed

2008-01-03 Thread Glen Lipka
Wow, I never thought of doing it this way. Very interesting. Recently, I saw this: http://www.netzgesta.de/corner/ Using Canvas it works in: Mozilla Firefox 1.5+, Opera 9+, Safari and IE6+ It might be worthwhile to create a jQuery version of this. It feels like the right approach. Glen On

[jQuery] Re: Resizing Input fields on Window Resize?

2008-01-01 Thread Glen Lipka
Are you using the dimensions plugin? It helps with this sort of thing. I think your approach sounds fine. Although, I might look at the parent width of the object rather than the window. That way 600 isnt hard coded. If you do it that way, then you dont need the dimensions plugin at all. Glen

[jQuery] Re: my new plugins

2008-01-01 Thread Glen Lipka
I got a JS error in IE7/Vista. :( Glen On Jan 1, 2008 7:08 AM, Eridius [EMAIL PROTECTED] wrote: I was using that one and on a page I was using it, I was basically re ordering a bunch of divs using jQuery. When I was reordering, I was copying these divs but event were not copying so I had

[jQuery] Re: What would you do? Cycling images

2008-01-01 Thread Glen Lipka
You dont like this one? I found it very easy to use. http://www.malsup.com/jquery/cycle/ Glen* * On Jan 1, 2008 5:55 PM, Kyle [EMAIL PROTECTED] wrote: I've seen a few plugins for this already, but none of them seem to do what I need. I also don't want to use any of these plugins that do far

[jQuery] Re: Beginner help with highlight effect

2007-12-24 Thread Glen Lipka
Check out this page in the docs. http://docs.jquery.com/Effects/animate I am in the airport in Phoenix on public wifi, so I cant make a demo right this sec. But that page should help. Glen On Dec 24, 2007 8:35 AM, rics [EMAIL PROTECTED] wrote: Hello, I'm a PHP developer, but all this

[jQuery] Re: Filter out innerhtml of div #id

2007-12-23 Thread Glen Lipka
Are you trying to get it while its in the variable? Maybe put the html into a dom element first, like $(div#someHiddenDiv).append(str); thingyouwant = $(div#content).html(); Does this help? Glen On Dec 22, 2007 7:30 PM, psy* [EMAIL PROTECTED] wrote: Hello, I have a full html code in in a

[jQuery] Re: Menus states and cookies - simple DOM question, please help!

2007-12-21 Thread Glen Lipka
This might be a case for the history plugin. Checkout how the tabs plugin uses the history plugin to maintain which tab is open. It should fundamentally be the same technique. http://stilbuero.de/jquery/history/ Glen On Dec 21, 2007 12:01 PM, Jonny [EMAIL PROTECTED] wrote: Hello, I think

[jQuery] Re: Sliding Panels Attempt

2007-12-19 Thread Glen Lipka
I had a demo that was based on click. http://www.commadot.com/jquery/faq.php But I modified it using the hoverIntent plugin to be more like you are describing. http://www.commadot.com/jquery/faqHover.php Does this help? Glen On Dec 18, 2007 4:04 PM, kache79 [EMAIL PROTECTED] wrote: hey

[jQuery] Re: using .load to replace div contents

2007-12-19 Thread Glen Lipka
Put .empty() before the load. That will clear it out. Glen On Dec 18, 2007 6:00 PM, rolfsf [EMAIL PROTECTED] wrote: I'm doing some simple ajax using .load --- clicking on a table row loads some html from an external file into a div. My question - do I need to remove the contents of the

[jQuery] Re: Best technique? .load() and div height...

2007-12-19 Thread Glen Lipka
The delay, I think it's a new member thing. Mine show up right away, I think. I think your technique sounds good. The situations that I have done that were fixed height. Glen On Dec 18, 2007 9:33 PM, Micky Hulse [EMAIL PROTECTED] wrote: Hi, I've got a few questions here... When I

[jQuery] Re: Need help with birthdate validation

2007-12-19 Thread Glen Lipka
I actually like the UX of this plugin: http://digitalbush.com/projects/masked-input-plugin It has a date input. It works well to supplement Jorns plugin. Glen On Dec 19, 2007 10:28 AM, sothis [EMAIL PROTECTED] wrote: Hello, Awhile ago, I clumsily implemented Jorn's fantastic validation

[jQuery] Re: this:contains selector

2007-12-13 Thread Glen Lipka
Something like this might work...not tested. $(this).is(:contains(matchingText)) Glen On Dec 12, 2007 4:55 PM, Van [EMAIL PROTECTED] wrote: The contains selector works fine with tags (a:contains()) etc. but doesn't seem to work with $(this). What is the best way to use contains with this??

[jQuery] Re: Need some help to solve this problem - A jquery Newbie

2007-12-13 Thread Glen Lipka
It might help to see an example online. It sounds like you want to scroll the window based on a specific scenerio. You may need the following plugins: http://www.freewebs.com/flesler/jQuery.LocalScroll/ OR http://www.freewebs.com/flesler/jQuery.ScrollTo/ AND

[jQuery] Re: jQuery + idTabs + Prototype

2007-12-13 Thread Glen Lipka
Have you tried the 1.2.1 version? I didnt realize the noconflict stuff worked in 1.1 Glen On Dec 13, 2007 2:36 AM, rem [EMAIL PROTECTED] wrote: Hello, I have a Wordpress theme which has few plugins based on jQuery also works with an indispensable Wordpress plugin which is based on

[jQuery] Re: Fade-in on page load... Best technique?

2007-12-13 Thread Glen Lipka
Maybe put a piece of JS at the beginning of the page before anything else, that adds the display:none dynamically. It SHOULD avoid a page blinking and hide the contents before they load. If JS is off, then the cols would be visible. Then once everything is loaded use the fadeOn(slow) function.

[jQuery] Img Src replacement

2007-12-12 Thread Glen Lipka
I have a nav that I do not control the HTML Source. div class=nav a href=foo.htmimg src=foo.gif //a a href=bar.htmimg src=bar.gif //a /div I want to have a hover event applied to the IMG so that when you hover over the img src changes from foo.gif to foo_on.gif and bar.gif to bar_on.gif.

[jQuery] Re: Img Src replacement

2007-12-12 Thread Glen Lipka
Perfect thanks. I didn't try that second one, but I will give it a go. Glen On Dec 12, 2007 1:24 PM, Mika Tuupola [EMAIL PROTECTED] wrote: On Dec 12, 2007, at 8:49 PM, Glen Lipka wrote: I have a nav that I do not control the HTML Source. div class=nav a href=foo.htmimg src

[jQuery] Re: Problem selecting a table row

2007-12-07 Thread Glen Lipka
I whipped up a demo for you. http://www.commadot.com/jquery/selectorHas.php Where I figured it out: http://docs.jquery.com/Selectors/has#selector Desc: Matches elements which contain at least one element that matches the specified selector. Selector page. Is this the one you looked at?

[jQuery] Re: Problem selecting a table row

2007-12-07 Thread Glen Lipka
One followup. tr[th] would only find something like this: tr th=foo The stuff in the brackets are attributes, not child elements. Glen On Dec 7, 2007 7:48 AM, Glen Lipka [EMAIL PROTECTED] wrote: I whipped up a demo for you. http://www.commadot.com/jquery/selectorHas.php Where I figured

[jQuery] Re: Show/Hide Div with checkbox options providing same results

2007-12-07 Thread Glen Lipka
It is shorter, but it just doesn't seem quite as jQuery-ish. ;) Glen On Dec 7, 2007 1:13 PM, Dave Methvin [EMAIL PROTECTED] wrote: $(#+this.className).[(this.checked?show:hide)](); Belay that, try this: $(#+this.className)[this.checked?show:hide](); I'm always making code longer than

[jQuery] Re: hover and className

2007-12-06 Thread Glen Lipka
Well it sounds like you are in a better place than last week. :) Let us know if there is anything else we can help with. Best, Glen On Dec 5, 2007 7:47 PM, DaveG [EMAIL PROTECTED] wrote: Glen Lipka wrote: Let's start at the beginning. Let's assume (work with me here

[jQuery] Re: horizontal accordion menu

2007-12-06 Thread Glen Lipka
Possibly a styled version of the horizontal accordion plugin? http://dev.portalzine.de/index?/Horizontal_Accordion--print Glen On Dec 6, 2007 10:16 AM, sherman [EMAIL PROTECTED] wrote: The menu needs a specific width set for the contentwidth portion of the slider. Do you know how I could

[jQuery] Re: Show/Hide Div with checkbox options providing same results

2007-12-06 Thread Glen Lipka
I whipped a demo. Does this do what you want? http://www.commadot.com/jquery/checkBoxShow.php Couple of tips: 1. Try to avoid putting onclick handlers in your html. jQuery does this really easily and makes your html easier to read. 2. getElementByID can be expressed as

[jQuery] Re: Strange unwanted delay problem

2007-12-06 Thread Glen Lipka
I am having trouble reproducing the error. I see a different weird behavior. Hover on the links or not doesnt seem to change this. If I mouse over the column and mouseout before it finishes animating, then it never closes. Could you elaborate a little on the problem you are seeing? I am in FF

  1   2   3   4   5   6   7   >