[jQuery] Can I select col and/or colgroup?

2009-08-12 Thread rolfsf
I've got a table in which I've set up some column groups. colgroup class=location col/col /colgroup colgroup class=year col class=this/col col class=that/col col class=that/col col class=that/col /colgroup colgroup class=year col class=this/col col class=that/col

[jQuery] Re: Can I select col and/or colgroup?

2009-08-12 Thread rolfsf
Thanks for the reply Richard! This is a quick prototype, so for the moment I'm using the ColumnManager plugin - http://p.sohei.org/stuff/jquery/columnmanager/demo/demo.html It seems to simplify the process a bit, though it's not exactly what I'm looking for -rolfsf On Aug 12, 6:21 pm, Richard

[jQuery] Re: Homemade, finder-like menu - problems with (un)hiding columns on click

2009-04-11 Thread rolfsf
I don't have an answer to your specific plugin problems, but have you seen Nicolas Rudas' jQuery Finder plugin? : http://www.nicolas.rudas.info/jquery/finder/ Perhaps an answer lies in that plugin, which has similar goals to your own On Apr 10, 3:46 pm, Maurice Kroon flapflapf...@gmail.com

[jQuery] proper syntax for a local path ../myDirectory/myFile.htm

2009-03-18 Thread rolfsf
I need to make a simple 'freestanding' prototype to be run locally. I used a simple load() to grab a div from another file: $('#ajax-panel').load(../myDirectory/myFile.htm #myDiv); but the ../ in the url chokes. How can I accomplish that for a prototype that runs locally on my machine without a

[jQuery] Re: proper syntax for a local path ../myDirectory/myFile.htm

2009-03-18 Thread rolfsf
wrote: I do this all the time... file:///c:/myDirectory/myFile.htm #myDiv On Mar 18, 3:32 pm, rolfsf rol...@gmail.com wrote: I need to make a simple 'freestanding' prototype to be run locally. I used a simple load() to grab a div from another file: $('#ajax-panel').load(../myDirectory

[jQuery] Re: How to debug when upgrading Jquery...

2009-02-19 Thread rolfsf
I'm just starting the same process, and so far the most common error I've been hitting has been the discontinued attribute selector syntax [...@name=foo], which is an easy one to fix- just get rid of the @. Most of those errors were in my own scripts, not the plugins. In a couple cases that error

[jQuery] the new whitehouse.gov - jQuery powered

2009-01-20 Thread rolfsf
I just noticed that team Obama pushed a new website live today - powered with jQuery! http://www.whitehouse.gov

[jQuery] Re: the new whitehouse.gov - jQuery powered

2009-01-20 Thread rolfsf
$('#POTUS43').hide(fast); On Jan 20, 11:36 am, brian bally.z...@gmail.com wrote: $(nation).ready(function() {    $('.POTUS').not('#a_jackass').change(); }); On Tue, Jan 20, 2009 at 2:21 PM, rolfsf rol...@gmail.com wrote: I just noticed that team Obama pushed a new website live today

[jQuery] jQuery noConflict() help

2009-01-20 Thread rolfsf
Trying to use jQuery some plugins alongside Prototype/Scriptalicious in Tapestry I added noConflict to my scripts using this method: jQuery.noConflict(); (function($) { $(function() { //my stuff here }); })(jQuery); But I'm not clear as to

[jQuery] Re: the new whitehouse.gov - jQuery powered

2009-01-20 Thread rolfsf
It looks like it's built with .NET, which would explain the MS Ajax On Jan 20, 2:20 pm, MorningZ morni...@gmail.com wrote: Checking out some of the code/technology used on the new site, i also see they have MS Ajax on there (see in the net panel of Firebug:  / WebReource.axd) On Jan 20,

[jQuery] Re: jQuery Tab not working properly in IE 6, 7

2009-01-19 Thread rolfsf
UI Tabs css changed with the most recent updates - jQuery 1.3 and jQuery UI 1.6rc5, so make sure you've made the appropriate updates to your css ( I just updated as well, and I noticed similar issues before I updated all of my css) http://docs.jquery.com/UI/Theming

[jQuery] jQuery 1.3 live() vs listen/intercept plugins

2009-01-16 Thread rolfsf
I'm trying to understand where the new live() fits in to the world of event delegation, and plugins like listen and intercept What are the arguments for one approach over the other? thanks!

[jQuery] UI Tabs, UI Datepicker, ajax...

2009-01-16 Thread rolfsf
using jQuery 1.3 and jQuery UI 1.6r5 I've got some ajax tabs. //initialize tabs $(ul.tabs-nav).tabs( defaults = { navClass: 'tabs-nav', selectedClass: 'tabs-selected',

[jQuery] Re: Tabs Documentation

2009-01-15 Thread rolfsf
I get a Media Wiki Internal Error at that URL - have been seeing that for a couple days On Jan 15, 10:05 am, Marta Figueiredo martafig...@gmail.com wrote: Hi, Have you triedhttp://docs.jquery.com/UI/Tabs? It seems to be working.. M. Jared wrote: Hi The documentation page for Tabs has

[jQuery] Re: Tabs Documentation

2009-01-15 Thread rolfsf
I was not logged in, so that's a partial confirmation On Jan 15, 12:35 pm, Richard D. Worth rdwo...@gmail.com wrote: Someone mentioned that this may be related to whether you are logged in or not. I haven't had a chance to look into this yet. Just throwing it out, in case it helps anyone. -

[jQuery] table striping - skip hidden rows

2009-01-12 Thread rolfsf
I have a table with multiple tbody's. Within each tbody there are a number of rows that can be hidden or shown by clicking on a link. I'm using the following function to stripe alternating rows: jQuery.fn.stripeTable = function(){ $(this).find(tbody

[jQuery] Re: table striping - skip hidden rows

2009-01-12 Thread rolfsf
that's too easy - it can't be right ;-) I guess my mistake was trying to use the nth-child(even)? On Jan 12, 12:36 pm, Karl Swedberg k...@englishrules.com wrote: Simpler still would be this: $(this).find(tbody tr:visible:even).addClass(alt); --Karl

[jQuery] smooth text animation - what am I doing wrong?

2008-12-02 Thread rolfsf
I'm trying to simply scroll some text within a div via the animation() method it seems to be kind of jerky - especially Firefox (I've looked on both Mac WinXP) here's a quick sample: http://www.monkeypuzzle.net/testfiles/jquery/scrolltext/ff-animated-text.htm it's actually worse within my

[jQuery] Re: asp.net and jquery - reactions to this letter

2008-11-20 Thread rolfsf
extraordiary convenience requires a slightly different mindset from conventional .net languages (one that I miss on the server side!) so perhaps the author could use some help to learn more about it. On Nov 18, 9:52 pm, rolfsf [EMAIL PROTECTED] wrote: is it truly a monster? http

[jQuery] Re: asp.net and jquery - reactions to this letter

2008-11-20 Thread rolfsf
He does like to complain, but he's a very good guy and a very good programmer. I sincerely hope he joins this conversation and that some of these comments, ideas, and folks might coax him back for a second look - I've never had the depth of knowledge (of either javascript, jquery or .net) to

[jQuery] asp.net and jquery - reactions to this letter

2008-11-18 Thread rolfsf
A friend had sent this rant in to microsoft, regarding jquery, which is published on their developer site. Not being an asp.net developer, I don't know what to make of his points. I'd be interested to hear from some asp.net developers who have embraced jquery - is it truly a monster?

[jQuery] Re: asp.net and jquery - reactions to this letter

2008-11-18 Thread rolfsf
into the .net toolkit and dare to step outside of the bounds a bit Jquery in teh end will only save time On Tue, Nov 18, 2008 at 10:52 PM, rolfsf [EMAIL PROTECTED] wrote: A friend had sent this rant in to microsoft, regarding jquery, which is published on their developer site. Not being

[jQuery] Re: asp.net and jquery - reactions to this letter

2008-11-18 Thread rolfsf
can pass on? - rolfsf On Nov 18, 3:52 pm, Jack Killpatrick [EMAIL PROTECTED] wrote: We've done a number of asp.net projects that use jQuery heavily. We do not use the MS Ajax stuff, because it's not vendor neutral. Many of our apps use C# web services and js-based widgets rendered client-side

[jQuery] Re: jQuery Tabs: CSS Bug

2008-11-12 Thread rolfsf
looks like you need to clear your float you could probably just add clear:both to the ui-tabs-panel rule ui-tab-panel { clear: both; } (assuming Klaus' ie-specific display: inline-block isn't working for whatever reason) On Nov 12, 2:45 pm, ripcurlksm [EMAIL PROTECTED] wrote: I am

[jQuery] jquery styleswitch - flex width independent of skin?

2008-11-07 Thread rolfsf
I'm using Kelvin Luck's styleswitch script (http://www.kelvinluck.com/ 2006/05/switch-stylesheets-with-jquery/) - it works as designed. But, what I want to do is essentially have 2 sets of style switches -- with one set I'll change the skin - colors, etc. With the other, I'll switch between

[jQuery] Re: Slide Show (S6) Autoplay Addon Beta (w/ Scroll-Up Effect) - jQuery Animate in Action

2008-10-15 Thread rolfsf
Chuck, I suspect it's only the svg object being used for the background, which really doesn't have anything to do with the 'code' - only the implementation. I'm looking at it in Safari, so I'm only guessing. Perhaps Gerald can add a simple workaround, or an example without the gradient On

[jQuery] Re: Basic problem - using .click and .hover together on elements

2008-10-11 Thread rolfsf
or a span), and you have to support IE6. IE6 only supports hover on anchors, while every other modern browser supports hover on just about anything. (IE7+ properly support hover) rolfsf On Oct 11, 12:56 pm, jez_p [EMAIL PROTECTED] wrote: Thank you very much for your help Eric - and for replying so

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-07 Thread rolfsf
count, and the Location in the L count., and then hiding that content in all but the C and L lists. rolfsf On Oct 7, 7:09 am, craig.kaminsky [EMAIL PROTECTED] wrote: Hi, Jack, I have just tried it out on a site. It works pretty darn well. We've noticed two things thus far: 1. The count

[jQuery] Re: Set height of element depending on only on its own position and window height?

2008-09-30 Thread rolfsf
I might add that you may be able to accomplish the same thing in 'modern' browsers (e.g. not IE6) with just css, using absolute positioning. Just set your right, left and bottom to, for example, 10px. (IE6 can't handle positioning on 3 sides). On Sep 30, 11:58 am, rolfsf [EMAIL PROTECTED] wrote

[jQuery] Re: Set height of element depending on only on its own position and window height?

2008-09-29 Thread rolfsf
try this: var wh = $(window).height();// window height var mt = $('#myDiv').offset().top; // top position of #myDiv $(mt).css('height', wh - mt - 20 + 'px'); // set height of #myDiv On Sep 29, 8:33 am,

[jQuery] Re: a little help - getting data pairs into input pairs

2008-09-05 Thread rolfsf
} } } } On Sep 3, 5:05 pm, rolfsf [EMAIL PROTECTED] wrote: I have some data: d1 = [[5,10],[10,15],[12,15],[15,18],[20,23]] and I have a table with text inputs

[jQuery] Re: jquery flot - integers only on x and/or y axis

2008-09-04 Thread rolfsf
i'll also learn a new approach  or is it the same url On Wed, Sep 3, 2008 at 1:30 PM, rolfsf [EMAIL PROTECTED] wrote: Yes - thanks Faizal. At least it pointed out the error I was making. I'm not (currently) using $.extend, but I did separate the data set options from the other chart

[jQuery] Re: jquery flot - integers only on x and/or y axis

2008-09-03 Thread rolfsf
                    tdinput type=text class=price size=8/input/td                 /tr             /tbody         /table         !--button id=plotPlot Graph/button--         div id=graphHolder width=300px height=300px/div     /body /html /**/ On Tue, Sep 2, 2008 at 4:49 PM, rolfsf [EMAIL

[jQuery] a little help - getting data pairs into input pairs

2008-09-03 Thread rolfsf
I have some data: d1 = [[5,10],[10,15],[12,15],[15,18],[20,23]] and I have a table with text inputs: table cellpadding=0 cellspacing=0 id=curveData thead tr th#/th

[jQuery] jquery flot - integers only on x and/or y axis

2008-09-02 Thread rolfsf
I've got this test page built using jquery flot to render a graph as price/quantity pairs are input I'm using the following jquery: $().ready(function(){ $.plot($(#graphHolder),[]); $('#curveData

[jQuery] Re: jquery flot - integers only on x and/or y axis

2008-09-02 Thread rolfsf
Thanks Faizal I tried setting the x and y axis with the min option, but it doesn't seem to work... perhaps I've got some syntax wrong http://monkeypuzzle.net/testfiles/jquery/flot/flot-test-3.htm

[jQuery] event delegation in jQuery - delegate vs listen vs ?

2008-08-19 Thread rolfsf
I'm trying to get my head around the concept of event delegation, and have been reading about jquery.listen and jquery.delegate and LowPro for jQuery... and I'm a little confused as to the strengths and weaknesses, or scope, of each approach. Can anyone offer some wise words on this topic? How

[jQuery] Re: event delegation in jQuery - delegate vs listen vs ?

2008-08-19 Thread rolfsf
Thanks Mike, I guess what I'm wrestling with, is what advantages the plugins offer (I'm not that adept at javascript, but I'm hoping to 'sell' the concept to others who are more adept at it). We have some big data tables with lots of clicks, sometimes expanding rows, sometimes hovers or

[jQuery] using scrollTo to keep dynamically added content scrolled into view?

2008-07-16 Thread rolfsf
If one has a textarea or editable div with overflow: auto, and one starts typing and filling the div, due to focus on the cursor the scroll will keep the newly added lines in view. But if one is adding the content dynamically, the newly added lines will appear out of view - there's no cursor to

[jQuery] Re: treeview async - callback on completion? (or some other way to do temporary loading... text)

2008-06-11 Thread rolfsf
, Max Williams (Brighton) [EMAIL PROTECTED] wrote: Hi rolf yeah, that would do fine actually - i missed that.  Do you know how that is generated? thanks max On Jun 10, 5:41 pm, rolfsf [EMAIL PROTECTED] wrote: If you look at the async demo:http://dev.jquery.com/view/trunk

[jQuery] highlight and fade a row

2008-06-11 Thread rolfsf
I want to highlight some rows with a background color, then fade back to original background color after 10 seconds. I've seen various solutions (using the jquery.color.js plugin), but the issue I'm stumbling on is that the rows in the table could have various background colors or no background

[jQuery] Re: highlight and fade a row

2008-06-11 Thread rolfsf
ok - I partially solved this by setting my default rows in this instance to be white, and then using the following: $('#test').click(function() { var theRow = $('#myRow td'); var origColor = $('#myRow td').css(backgroundColor);

[jQuery] Re: treeview async - callback on completion? (or some other way to do temporary loading... text)

2008-06-10 Thread rolfsf
If you look at the async demo: http://dev.jquery.com/view/trunk/plugins/treeview/demo/async.html in the first tree, click on item 3, and then on item 3.6 - you'll see a loading icon for a few seconds, then the branch will load. Is that what you're looking for? rolf On Jun 10, 9:10 am, Max

[jQuery] Re: help with array for flot

2008-06-05 Thread rolfsf
aquaone thank you! I need to do a little reading up on what .push does rolf On Jun 5, 2008, at 3:09 PM, aquaone wrote: $('#plot').click(function() { var d1 = []; $('#curveData tbody tr').each(function() { tr = $(this); pair = []; tr.find('input.qty').val()

[jQuery] help with array for flot

2008-06-04 Thread rolfsf
I'm playing with the flot plugin (http://code.google.com/p/flot/) and need a little help I want to take data from a series of text inputs (Quantity/Price pairs) and plot them when a button is clicked. I just don't understand enough about javascript and arrays to know how to make an array from

[jQuery] Re: help with array for flot

2008-06-04 Thread rolfsf
cool - that's part of what I need. Since I'm actually using inputs in the td's, wouldn't I need to get the value of the input within each td? maybe I can figure that out from here... (there's actually a plugin that converts tables to flot graphs... but since I'm using inputs in a table, I

[jQuery] Re: Best way to do tree-navigator + content-pane layout?

2008-05-31 Thread rolfsf
Have you tried the jquery splitter plugin? http://methvin.com/jquery/splitter/default.html On May 31, 6:38 pm, Sophie [EMAIL PROTECTED] wrote: I am trying to something like this, with a tree navigator in the left and a content pane on its right. What is the best way to make the right edge of

[jQuery] accordion 1.5 - fixed height with scrolling

2008-05-21 Thread rolfsf
I had an accordion working with an older version of the jquery.accordion plugin, such that the accordion was a fixed height, and if an individual 'drawer' had too much content it scrolled. accordion v1.5 seems to override my overflow settings. It may just be a different option setting, but I

[jQuery] Autocomplete - is bgiframe required?

2008-05-16 Thread rolfsf
I'm getting a javascript error in Firefox (list.bgiframe is not a function) with the autocomplete plugin if I don't include bgiframe, but the documentation seems to imply that bgiframe is optional. Is bgiframe required?

[jQuery] workaround for IE6 clone(true) bug in jQuery 1.2.2?

2008-05-15 Thread rolfsf
I need to clone a table row, and have run into the IE6 clone(true) bug using jQuery 1.2.2. I can't upgrade to jQuery 1.2.3 just yet, so I'm wondering what the simplest workaround is? I simply want to duplicate the last row of a table. I was using the following: $('#addRow')

[jQuery] Re: workaround for IE6 clone(true) bug in jQuery 1.2.2?

2008-05-15 Thread rolfsf
() do the trick? I thought that the   true arg was for cloning the events along with the elements, but   that's what livequery does for you. Maybe I'm misunderstanding, though. --Karl _ Karl Swedbergwww.englishrules.comwww.learningjquery.com On May 15, 2008, at 3:04 PM, rolfsf

[jQuery] Re: bgiframe superfish

2008-05-14 Thread rolfsf
I understand... I had just assumed (without thinking!) that the iframe was wrapped around the ul. I was having some problems in IE that seemed to be coming from the use of bgiframe. I've since looked through the entire set of screens and determined that I can probably get away with not using it

[jQuery] Superfish - add sfhover to an LI that doesn't contain UL

2008-05-14 Thread rolfsf
The superfish plugin, from what I can tell, only adds the sfHover class to LI's that contain a UL. Is there an easy way to have it add the sfHover class to LI's that don't contain a UL?

[jQuery] Re: Superfish - add sfhover to an LI that doesn't contain UL

2008-05-14 Thread rolfsf
I found a way around what I was trying to do, though it would still be useful to be able to add a hover class to LI's without nested UL's, to help get past IE6's lack of hover support. On May 14, 9:38 am, rolfsf [EMAIL PROTECTED] wrote: The superfish plugin, from what I can tell, only adds

[jQuery] bgiframe superfish

2008-05-13 Thread rolfsf
the UL? it just doesn't look right - am I crazy? rolfsf

[jQuery] Re: treeview - async - problems reinitializing tree

2008-05-04 Thread rolfsf
the ul element during the refresh then re-added it in the same location with the same starting markup as when the page originally loaded. This cleared the problem for me. The treeview now properly reloads. Hope that helps. J. On May 1, 6:59 pm, rolfsf [EMAIL PROTECTED] wrote: Our tree

[jQuery] Re: async treeview - Can we have a callback method that is invoked when the return status is not 200?

2008-05-02 Thread rolfsf
Thanks for the tip. I figured there must be some global method On May 2, 5:21 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: When the return code is an error, the global ajaxError event is triggered. Give that a try. Jörn

[jQuery] async treeview - still have problems re-initializing the tree

2008-05-02 Thread rolfsf
We're still having problems implementing a 'refresh' button for a treeview tree. We need to be able to re-initialize the tree, clearing out the current version completely, and reloading with data fresh from the server. we're clearing out the current tree with: $('#openExistingTree').empty();

[jQuery] Re: treeview - async - problems reinitializing tree

2008-05-01 Thread rolfsf
sorry, didn't realize how badly the formatting was! Let me try again. We ran into a problem when trying to set up a refresh button on an async treeview implementation. Our tree contents will be changing all the time. Basically, we need to know how to blow away the contents of the UL and then

[jQuery] Re: treeview - async - problems reinitializing tree

2008-05-01 Thread rolfsf
Thanks ripple. So are you saying you had to remove and clear the individual elements and attributes, rather than using empty() or remove() on the UL? Why wouldn't removing or emptying the contents of the UL do the same thing? I guess I'm confused as to what or where (why!) information about

[jQuery] Re: treeview - async - problems reinitializing tree

2008-05-01 Thread rolfsf
Our tree will potentially change within the time that someone is using it. In fact, the user will be creating and saving new nodes; Other users will be creating and saving new nodes. Both users need to be able to refresh the tree to see nodes added by themselves and others. The async tree starts

[jQuery] async treeview - Can we have a callback method that is invoked when the return status is not 200?

2008-05-01 Thread rolfsf
Another request for the Async Treeview - in our application, we have an automatic session time out after a set period of idle time. After that timeout, the server will return a 302 Redirect status. We then popup a dialog or redirect to the login page. We need to have a callback method that is

[jQuery] Re: treeview - async - can we get a loading icon like this?

2008-04-30 Thread rolfsf
Sweet! thanks Jörn Was there any change to the javascript? It appears that you're just using a .placeholder class on a span, that gets replaced...? rolf On Apr 30, 9:17 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: rolf m schrieb: I'm sorry - I didn't mean the graphic specifically, but an

[jQuery] treeview - async - can we get a loading icon like this?

2008-04-29 Thread rolfsf
expand icon and note the brief loading icon as it first loads minor, certainly, but a nice effect. I know Jörn is working on the async, so I thought I'd ask Thanks, rolfsf

[jQuery] jdMenu 1.4 -- selects appear on top of sub menus in IE

2008-04-15 Thread rolfsf
I just noticed that the updated version 1.4 of jdMenu no longer makes use of the bgiframe plugin to cover the select bug in IE6 What's the most efficient workaround? do I bind bgiframe to the ul.jdmenu ul.sub? thanks, rolfsf

[jQuery] help with regex? converting plain text with line breaks to ol with lis

2008-04-11 Thread rolfsf
It's a bit off topic, perhaps, but using jQuery I want to get the contents of a plain text file, and convert each line to a list item in an ordered list. Being a designer, the regular expression syntax just stumps me... \n\r\??? Can anyone nudge me in the right direction? rolfsf

[jQuery] Re: help with regex? converting plain text with line breaks to ol with lis

2008-04-11 Thread rolfsf
Thank Ariel So the first line creates a variable of all the text, line 2a puts an initial li, and then splits the text at each line break adding /lili, and finally adding the final /li Line 3 wraps the whole thing in an ol (so jQuery automagically closes the tag?) thanks so much rolfsf On Apr

[jQuery] Re: Using Jquery instance in an Iframe

2008-04-10 Thread rolfsf
There was a plugin that someone developed for this sort of situation, but I'm not sure it's still being supported/updated. Look for a jQuery plugin called FrameReady rolfsf On Apr 10, 5:51 am, Frederic [EMAIL PROTECTED] wrote: Hello, To avoid the loading of multiple Jquery in my application

[jQuery] designMode - how to detect changes in the editable iframe

2008-04-07 Thread rolfsf
event to the iframe doesn't appear to do anything. Any suggestions? thanks rolfsf

[jQuery] Re: Problems with Migration from 1.1.3 to 1.2.3

2008-04-04 Thread rolfsf
I've been working slowly through the same upgrade - I was getting a similar error, and eventually tracked it down to a jquery plugin that also needed updating. So, you might want to check for jquery 1.2.x compatible versions of any plugins you use and see if that helps rolfsf On Apr 4, 11:25 am

[jQuery] ui.tabs - setting the title attribute of newly added tab

2008-04-04 Thread rolfsf
truncating and cleaning var fullName is a variable that holds the full text I'd like to use as a title attribute any help is much appreciated rolfsf

[jQuery] Re: UI Tabs - closable tabs

2008-04-02 Thread rolfsf
Thanks Klaus! Any chance you could give me a quick explanation of what the different parts of that script are doing? I'm trying to understand how the script determines which tab to remove. Doing my best to learn these concepts! rolfsf On Apr 1, 11:42 pm, Klaus Hartl [EMAIL PROTECTED] wrote

[jQuery] Re: ui.tabs - appending multiple new tabs

2008-04-02 Thread rolfsf
; }); However... if combined with closable tabs, it would not be able to confirm uniqueness of the ID On Apr 2, 11:25 am, rolfsf [EMAIL PROTECTED] wrote: Adding (appending) new tabs in ui.tabs is pretty straightforward, but I notice in the example:http://stilbuero.de/jquery/tabs_3

[jQuery] UI Tabs - closable tabs

2008-04-01 Thread rolfsf
I want to add a close icon to the UI tabs to allow the user to close a tab (remove it from the interface) I've found this page: http://stilbuero.de/jquery/tabs_3/close.html which seems like it's supposed to do what I want, however it doesn't seem to work for me in either FF, IE6 or Safari 3 - I

[jQuery] Re: Dynamically generated HTML and effects on CSS

2008-03-08 Thread rolfsf
Ah - sorry. I generally don't have a problem with css in dynamically generated html, though you might encounter problems within iframes. and, though I have no clue if these are helpful...: Tips For Representing Right-To-Left Text In Markup Languages Set the overall document direction on the

[jQuery] Re: Dynamically generated HTML and effects on CSS

2008-03-06 Thread rolfsf
I've never played with the css direction properties, nor facebox, nor can I see your example, but I do know that the correct css syntax is: div { direction: rtl } rather than 'dir', so you might look at that rolf [EMAIL PROTECTED] wrote: still can't seem to locate the problem...

[jQuery] techniques for displaying line numbers

2008-03-03 Thread rolfsf
I'm trying to sketch out a concept for an application that is essentially a simple text editor or equation editor. A user will type or paste some text ( a calculation of sorts) into a text area. Is there a way, perhaps using jquery, to display the line numbers along side the text or text-area?

[jQuery] Re: techniques for displaying line numbers

2008-03-03 Thread rolfsf
and line items. It's not exactly what I was looking for, but it's a step in that direction. I would love to hear other ideas! r. rolfsf wrote: I'm trying to sketch out a concept for an application that is essentially a simple text editor or equation editor. A user will type or paste some text

[jQuery] Re: what editor do you use?

2008-02-14 Thread rolfsf
http://www.panic.com/coda/ coda - but then, I'm one of those mac people... rolfsf Feijó-2 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

[jQuery] Re: changing the selected option in a select

2008-02-08 Thread rolfsf
Thanks - I'll check it out. I found Sam Collett's selectboxes plugin and used that, although it does far more than I needed. r. Charles K. Clarkson wrote: rolfsf wrote: : this didn't work (as well as several other variations): : $('a.cancel').click( function(){ : $('select

[jQuery] changing the selected option in a select

2008-02-07 Thread rolfsf
I can't seem to get this to work... I'm using jquery 1.1.4 I have a link 'a.clear' When clicking on a.clear, I want to reset all selects to a 'null' option: javascript:void(0); clear select option value=0--/option option value=1 selected=selectedthis/option option value=2

[jQuery] Re: re[jQuery] placeWith -- Use with Classes

2008-01-25 Thread rolfsf
and when dealing with multiple classes on the same element, I've found it necessary at times to use: .attr('class' , 'class-name1 class-name2') where .class-name1 typically doesn't change, but .class-name2 might be any one of 5 or 6 different classes. Rather than trying to figure out which one

[jQuery] Re: sum of table rows

2008-01-23 Thread rolfsf
That's a nice little plugin Dan! Is it possible to sum a column of text inputs as they're filled (self-totalling, rather than onClick)? Rolf Dan G. Switzer, II wrote: It sounds as if this might be a good candidate for my Calculation plug-in:

[jQuery] Re: sum of table rows

2008-01-23 Thread rolfsf
Sweet! Thanks man! Dan G. Switzer, II wrote: I just realized the description text on the page is completely wrong! It's for another plug-in and I used that page as a template for this one. :) I just updated the Calculation Plug-in page so that the description is accurate. I also

[jQuery] Re: help with jframe plugin :)

2008-01-21 Thread rolfsf
I don't know jFrame, and haven't spent much time looking, but according to the jFrame documentation: The following JavaScript files must be included in the head section of your HTML page : jquery.js : http://docs.jquery.com/Downloading_jQuery jquery.form.js :

[jQuery] Re: Announce: jQuery Expander Plugin

2008-01-13 Thread rolfsf
Very nice Karl, as usual! It's similar in functionality to the http://www.reindel.com/truncate/ truncate plugin that I recently used, but feels more refined. How about making it easy to use an expand/collapse icon in place of the text? -- View this message in context:

[jQuery] Re: Superfish Menus - Including Dynamic Navigation Arrows

2008-01-07 Thread rolfsf
I might be misunderstanding, but the arrows in the example link are not done with javascript - it's just css (from the linked page): #menuh a.top_parent, #menuh a.top_parent:hover /* attaches down-arrow to all top-parents */ { background-image: url(navdown_white.gif);

[jQuery] Re: mery christmas!

2007-12-25 Thread rolfsf
Feliz Natal Feijó! r. Feijó-2 wrote: and great 2008 to ya'll !! huge hug baita abraço Feijó -- View this message in context: http://www.nabble.com/mery-christmas%21-tp14492663s27240p14496959.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: clicking on row vs. clicking on link in that row

2007-12-22 Thread rolfsf
(){ $(this).parents('tr').hide(); return false; }); That *should* take care of things for you... Shawn rolfsf wrote: I've set up a simple action when a user clicks on a row in a table. (highlight the row, load some details via ajax

[jQuery] Re: clicking on row vs. clicking on link in that row

2007-12-21 Thread rolfsf
/Events_(Guide)#event.stopPropagation.28__.29 --Erik On 12/21/07, rolfsf [EMAIL PROTECTED] wrote: I've set up a simple action when a user clicks on a row in a table. (highlight the row, load some details via ajax into a div) However, in one column of the table I've got a link/button

[jQuery] clicking on row vs. clicking on link in that row

2007-12-21 Thread rolfsf
I've set up a simple action when a user clicks on a row in a table. (highlight the row, load some details via ajax into a div) However, in one column of the table I've got a link/button that, when clicked, will hide that row. If clicked, I don't want to highlight the row or load it's details.

[jQuery] Re: Fixed table header

2007-12-18 Thread rolfsf
I've had some success playing with this technique: http://home.tampabay.rr.com/bmerkey/examples/nonscroll-table-header.html It's not perfect - it currently uses expressions in the css, which could be pulled out / adapted into an external javascript file. You can turn the horizontal scrolling on

[jQuery] using .load to replace div contents

2007-12-18 Thread rolfsf
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 div (#myWindow) before loading the new html, or does .load do this? $('.myTrigger).click(function(){ var wf =

[jQuery] Re: ClueTip - local content without attribute

2007-12-08 Thread rolfsf
and then apply the clutip to them: $('td.green').attr({name: '#msg1'}).cluetip({tipAttribute: 'name', local: true}); --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Dec 7, 2007, at 4:46 PM, rolfsf wrote: I'm using ClueTip, and loading

[jQuery] ClueTip - local content without attribute

2007-12-07 Thread rolfsf
I'm using ClueTip, and loading the content from some hidden divs using the default rel attribute. Is there a way I can do this without using the rel attribute? For example: I have some cells in a table: td class=greena href=blah99/a/td td class=reda href=blah99/a/td and some hidden divs: div

[jQuery] Re: A few jQuery Patterns

2007-11-20 Thread rolfsf
If you get a solution to your Dynamo Check'em, I'd love to hear it. We'll be looking at a similar challenge in the new year. TunaSandwich wrote: Dynamo-Check'em: I have a list of a lot of check boxes so what I'd like to do is have a text box at the top of the list. When the user types

[jQuery] Truncate plugin and jquery 1.1.4

2007-11-14 Thread rolfsf
I notice that the jquery.truncate.js plugin supports jquery 1.1.3.1 -- are there any known issues with jquery 1.1.4 or later? I'm starting my upgrade process to 1.2... http://www.reindel.com/truncate/ Thanks! -- View this message in context:

[jQuery] Re: RES: [jQuery] autocomplete - show all

2007-11-09 Thread rolfsf
: If (!$string=='*') $where .= and yourfield like '$string%'); The performance will not be good if the list contain 1000's -Mensagem original- De: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] Em nome de rolfsf Enviada em: quinta-feira, 8 de novembro de 2007 23:30

[jQuery] autocomplete - show all

2007-11-08 Thread rolfsf
I'm just starting to research autocomplete plugins. We have a case where in certain situations a user may not know enough about what they're looking for to successfully type a few characters and get close to the right result (unpredictable combinations of letters and numbers). In this case, we'd

[jQuery] Re: SuperFish Menu Flash

2007-11-02 Thread rolfsf
I don't have an easy answer for you, but it seems like you've tried a couple different techniques and haven't completely removed the old ones. For example, you've got both the original suckerfish javascript (sfhover) and superfish ( which is a jquery implementation of the suckerfish menu).

  1   2   >