[jQuery] Baffling input problem

2008-09-23 Thread mdrisser
Here's the scenario. I have a series of text inputs with a class of 'online', I want to update a total everytime an input with the class of 'online' is changed. Basically like a spreadsheet doing an auto sum on a column. The total is put into two places, a div and a hidden input. Here's the code

[jQuery] jQuery UI Tutorials

2008-05-28 Thread mdrisser
Hi all, I just posted the second part in my jQuery UI Tutorials, this one is on the tabs widget, let me know what you think. I value your feedback. http://mdrisser.r1designs.net/blog

[jQuery] Re: Help learning...

2008-05-28 Thread mdrisser
Can you post a link to the page? Just taking a quick look at your code I noticed that the extension is missing off of your call to the jQuery library: I realize that on Windows the extensions are hidden so try: Notice the .js I added to the path to the jQuery library.

[jQuery] Re: jQuery UI

2008-05-20 Thread mdrisser
e some. > > Don't forget - the docs are a wiki, so include links to your tutorials > there. > > - Richard > > Richard D. Worthhttp://rdworth.org/ > > On Fri, May 16, 2008 at 11:20 AM, mdrisser <[EMAIL PROTECTED]> wrote: > > > I've just started p

[jQuery] Re: Favorite Modal Dialog?

2008-05-16 Thread mdrisser
Its funny that you should mention that, I just put together my first tutorial, and its concerning implementing the jQuery UI's Dialog component, which has a modal option. You can take a look at it here: http://mdrisser.r1designs.net/blog/ On May 16, 7:57 am, A13thGuest <[EMAIL PROTECTED]> wrote:

[jQuery] jQuery UI

2008-05-16 Thread mdrisser
I've just started playing around with the jQuery UI and while I was at it I decided to put together a series of tutorials on implenting the UI, I've never written any tutorials before, so it may not be the best, but I hope that it will be useful to someone. You can find it at http://mdrisser.r1de

[jQuery] Re: email plugin

2008-04-17 Thread mdrisser
menting experience and a way for me to give back to the jQuery community. Thanks for your opinion and feedback, its one of the things that makes this community so great. On Apr 16, 6:06 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Hi mdrisser > > I checked the source, it does wh

[jQuery] Re: CSS Design consideration

2008-04-17 Thread mdrisser
Use CSS to handle the overall style of your pages, the look and feel, and the layout and attach those styles to the HTML elements, either through IDs or classes or both. Use jQuery to add additional functionality to your pages, but keep as much of the styling as possible within the CSS file(s). T

[jQuery] Re: HOWTO: Nested hover

2008-04-16 Thread mdrisser
Could you post an example of what you're doing? On Apr 16, 9:46 am, weepy <[EMAIL PROTECTED]> wrote: > Hi > > I have a div with other divs nested inside it (these may have further > divs nested inside). I want to provide a hover effect when each is > hovered upon. > > The trouble I have is that u

[jQuery] email plugin

2008-04-16 Thread mdrisser
Hi all, I just released version 0.2 of my SafeMail plugin over at the jQuery plugin repository. SafeMail is another plugin that allows you to safely display email addresses in a web page so that spam bots can't read them. Arguments are now passed as an object and I added two additional options, th

[jQuery] Re: toggle hide show function not working (code provided)

2007-11-23 Thread mdrisser
Jay, Your code works great, but adds a couple of extra steps. Its not necessary to empty the html first, if you call .html() with an argument containing what you want to appear there, jQuery will clear the exisiting html for you and then replace it with what you had desired. // Works, but adds an

[jQuery] Re: toggle hide show function not working (code provided)

2007-11-21 Thread mdrisser
The problem is that .remove() removes the actual element not the text inside of it. This works: $("a.collapse").html("(-)"); On Nov 21, 10:35 am, FrankTudor <[EMAIL PROTECTED]> wrote: > > $(document).ready(function(){ > > $('.bang').hide(); > > $("a.collapse").toggle(function() > { >

[jQuery] Superfish - Autotrigger Third Level

2007-11-21 Thread mdrisser
Hi all, I have a three - tiered superfish menu that's working great as is. What I need to do though is automatically show the third levels when the first level is hovered over. Main-1 Sub-1 Item-1

[jQuery] Re: Help with book example - alternating row colors

2007-07-30 Thread mdrisser
It really depends upon how you're going about trying to add the bottom border. The best way would be to either put the bottom border in #chemTable tr { border-bottom: 1px solid #000;} or add a bottom border to your add and even classes. (i.e. .odd, .even {border-bottom: 1px solid #000;} That is a

[jQuery] Re: Problem accessing current element from plugin

2007-07-11 Thread mdrisser
I just figured it out :) Following the code in SeViR's Google Maps plugin, I did this: jQuery.fn.ymap = function(settings) { return this.each(function() { new jQuery.ymap(this, settings); }); } jQuery.ymap = function(obj, settings) { // Function Code } Wh

[jQuery] Re: TableSorter question

2007-06-04 Thread mdrisser
Try using something similar to the following: // TableSorter $('.reportTable').tableSorter({ sortColumn: 'date', // Integer or String of the name of the column to sort by. sortDir: 2, // Change the default sor