[jQuery] Re: Plugin for styling ?

2009-06-01 Thread clorentzen
For custom formatting selects, try the linkselect plugin: http://www.givainc.com/labs/linkselect_jquery_plugin.htm Best, --Carl. On Jun 1, 1:25 pm, amuhlou wrote: > Hey Everyone, > > I've been looking around the web for solutions to styling HTML form > elements and haven't come up with much.

[jQuery] tablesorter plugin help -- getting it to ignore quotation marks

2009-05-21 Thread clorentzen
I'm using the tablesorter plugin, and have run into a small issue I can't figure out how to solve: One of the columns in my table contains titles, some of which are books, others of which are articles or television episodes. The latter two start with a double quote (“)... So, for example, one ce

[jQuery] Re: jQuery validation plugin -- how to validate an input only if it contains info

2009-03-11 Thread clorentzen
11, 2009 at 12:43 PM, clorentzen wrote: > > > Hi -- > > > I've got a contact form here > > >http://www.dianlofton.com/contact.shtml > > > ...using the jquery.validate.js plugin. The form has an optional input > > for a phone number, which I'd like to hav

[jQuery] jQuery validation plugin -- how to validate an input only if it contains info

2009-03-11 Thread clorentzen
Hi -- I've got a contact form here http://www.dianlofton.com/contact.shtml ...using the jquery.validate.js plugin. The form has an optional input for a phone number, which I'd like to have validated -- but only if there is info in the input. If you look at the source code for that page, you'll

[jQuery] Re: LocalScroll with anchor in URL not working

2009-03-05 Thread clorentzen
; I intend to take another look at this asap. > > Try putting the window.scrollTo line outside the document.ready. > > > > On Thu, Mar 5, 2009 at 1:28 PM, clorentzen wrote: > > > Ariel -- > > > Thanks again for responding. I've tried a few more thing

[jQuery] Re: LocalScroll with anchor in URL not working

2009-03-05 Thread clorentzen
ll for me, on FF2. > Using the back button won't animatedly scroll, the plugin isn't > monitoring those changes. > > > > On Wed, Mar 4, 2009 at 7:28 PM, clorentzen wrote: > > > Ariel -- > > > Thanks for your reply. If I go to my test page from one of the f

[jQuery] Re: LocalScroll with anchor in URL not working

2009-03-04 Thread clorentzen
n:1500 >    }); >    $('#container').localScroll({ >      axis:'x', >      hash:true, >      duration: 1000 >   }); > > }); > > -- > Ariel Fleslerhttp://flesler.blogspot.com > > On Mar 4, 3:47 pm, clorentzen wrote: > > > Sorry, I hit "post&

[jQuery] Re: LocalScroll with anchor in URL not working

2009-03-04 Thread clorentzen
ou! On Mar 4, 1:43 pm, clorentzen wrote: > Hi -- > > I'm using the LocalScroll plugin, and having trouble getting it to > work when passing the anchor through as part of the URL. Instead of > scrolling to the appropriate anchor id, the window just moves a few > pixels

[jQuery] LocalScroll with anchor in URL not working

2009-03-04 Thread clorentzen
Hi -- I'm using the LocalScroll plugin, and having trouble getting it to work when passing the anchor through as part of the URL. Instead of scrolling to the appropriate anchor id, the window just moves a few pixels and stops. Calling LocalScroll on links within the page works fine, but not when

[jQuery] Re: selector question

2008-12-04 Thread clorentzen
Thanks! The lack of something else wrapping each s content was indeed the problem. On Dec 4, 1:34 pm, "Charlie Griefer" <[EMAIL PROTECTED]> wrote: > On Thu, Dec 4, 2008 at 10:28 AM, Charlie Griefer > <[EMAIL PROTECTED]>wrote: > > > > > On Thu,

[jQuery] selector question

2008-12-04 Thread clorentzen
Hi -- I'm trying to hide all the contents from s within a table *except* for the first in each ... I don't want to hide the s, just their contents, but I'm having trouble finding the correct selector(s) to accomplish this. So, for example, if the table is: one two three four five six I'

[jQuery] Re: linkselect plugin problem (related hover gets deactivated) -- help please

2008-11-21 Thread clorentzen
Dan -- Yep, that was it. Now the hover state of the parent nav panel doesn't get disturbed. ...And you were right about the repercussions on the placement of the dropdown. It's now appearing very far away from the actual initial link, unfortunately. Best, --Carl.

[jQuery] Re: linkselect plugin problem (related hover gets deactivated) -- help please

2008-11-20 Thread clorentzen
Dan -- Yeah, I gathered that much. :) When I winnow my .js file down to just the snippet you posted, the error is still present. And I will admit that the complexity of what you provided is a bit more than what I normally put together, so the syntax of it eludes me somewhat. So I'm not sure exa

[jQuery] Re: linkselect plugin problem (related hover gets deactivated) -- help please

2008-11-20 Thread clorentzen
Dan -- Thanks. I'm attempting what you suggested, but maybe my syntax is incorrect? Firebug tells me "missing ) after formal parameters". Can you point me in the right direction? // replace select objects in the main content $(document).ready(function (){ $('#container

[jQuery] linkselect plugin problem (related hover gets deactivated) -- help please

2008-11-19 Thread clorentzen
I'm using the linkselect plugin to replace select objects in forms with a custom look... The issue I'm having is that when these occur in navigation menus/panels that appear on hover, hovering down onto the replaced select object listing causes the actual navigation menu to disappear, as if the ho

[jQuery] problem when mousing onto object option list (relatedTarget?)

2008-11-10 Thread clorentzen
Hi -- I'm working on a site with a nav area that exposes panels/menus when a parent is hovered over -- using hover(). Some of these panels contain forms, including objects. When I click a select in one of these nav menus, and then mouse over the options, it causes the containing menu panel to d

[jQuery] Re: Need truncator/Expander help (trimming on # of objects rather than character count)

2008-07-06 Thread clorentzen
Karl -- Also, fyi, the insertAfter method spec'd in the plugin doesn't seem to play nice in Safari 3.1. But the other choice you mention in the comments, appendTo, works just fine. Best, --Carl. On Jul 6, 5:11 pm, clorentzen <[EMAIL PROTECTED]> wrote: > Karl -- > &g

[jQuery] Re: Need truncator/Expander help (trimming on # of objects rather than character count)

2008-07-06 Thread clorentzen
> > > One important thing to note is that your selector should be the > > parent element of the elements you want to expand/collapse. > > > --Karl > > > > Karl Swedberg > >www.englishrules.com > >www.learningjquery.com > > > O

[jQuery] Need truncator/Expander help (trimming on # of objects rather than character count)

2008-07-06 Thread clorentzen
I am looking to add an expander/truncator feature to a site I'm building. However, the plugins and other code snippets I've found cut off text based on character count. What I'm looking for is something that cuts off based on a specific number of paragraphs. So, for example, inside a targeted div,

[jQuery] How to get text content in nested list

2008-05-13 Thread clorentzen
I'm trying to get the text contents of a list item that also contains a nested list -- but only want the text content of the parent , and not the also contained within it. Markup would look something like: The list item text Sub item one Sub item two Sub ite

[jQuery] help with toggling classes(!)

2008-04-25 Thread clorentzen
I'm not sure if "toggling classes" is the right way to describe what I'm having trouble with, so let me explain a little... If you look at the example page here: http://www.cement-site.com/menutest/test2.html Here are the behaviors: 1) mousing over any of the four tabs produces a hover state 2)

[jQuery] help with toggling behavior

2008-04-07 Thread clorentzen
I'm new to jquery (and am no javascript pro), and am having trouble figuring out two things with a behavior that I've put together: 1) how do I simplify this code so that it can be used for numerous instances on the page, without having to have repeats of the code with the ids changed out? Can I