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
I've got a table in which I've set up some column groups.
...
Ideally, I'd like to be able to toggle the visibility of the - can I select them as cols in jquery, or do I need to
get at them via the rows?
Thanks!
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 wrote:
> Hi,
>
> First o
gt; I do this all the time...
>
> file:///c:/myDirectory/myFile.htm #myDiv
>
> On Mar 18, 3:32 pm, rolfsf 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:
>
> &
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
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
It looks like it's built with .NET, which would explain the MS Ajax
On Jan 20, 2:20 pm, MorningZ 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, 4:30 pm, Rey Ba
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 wh
$('#POTUS43').hide(fast);
On Jan 20, 11:36 am, brian wrote:
> $(nation).ready(function()
> {
> $('.POTUS').not('#a_jackass').change();
>
> });
> On Tue, Jan 20, 2009 at 2:21 PM, rolfsf wrote:
>
> > I just noticed that team Obama
I just noticed that team Obama pushed a new website live today -
powered with jQuery!
http://www.whitehouse.gov
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
http://docs.jquery.com/UI/Themin
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',
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!
I was not logged in, so that's a partial confirmation
On Jan 15, 12:35 pm, "Richard D. Worth" 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.
>
> - Richard
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 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 not bee
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 wrote:
> Simpler still would be this:
>
> $(this).find("tbody tr:visible:even").addClass("alt");
>
> --Karl
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
tr:nth-child(
Thanks for the reply
At the time of my posting I had been told only that there was a
conflict. I've since learned that the conflict is between Prototype
(which is integrated into Tapestry) and jQuery.
jQuery.noConflict() to the rescue - now I just need to figure out the
best method
On Jan 9,
I've recently started doing some front end design for a team who are
working in Tapestry 5 - would love to know if there is anyone on the
list who has experience incorporating jQuery into Tapestry, and if
there are any known issues
thanks!
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 app
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 assis
mments. We always rely on jQuery to get
> > grips with the monster that is ASP.Net+AJAX.Net, regardless of project
> > size.
>
> > jQuery's extraordiary convenience requires a slightly different
> > mindset from conventional .net languages (one that I miss on the
ndations I 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 a
point your errors.
>
> If you are not realy stuck too much 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 thi
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?
http://redde
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 ha
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 flex
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 Oct
like a div 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
egory in the "C" 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 w
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 &l
the window, no matter what may or may not be above the div in
> > the DOM tree, and so far no luck.
> > But thanks for the effort, I appreciate it.
>
> > /Torgil
>
> > On 29 Sep, 21:26, rolfsf <[EMAIL PROTECTED]> wrote:
>
> > > try this:
>
&
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, Kabelkultu
27;; // set to blank because there's no
data
}
}
}
}
On Sep 3, 5:05 pm, rolfsf <[EMAIL PROTECTED]> wrote:
> I have some data:
>
> d1 = [[5,10],[
D]> wrote:
> cool...let me have the code as well 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 have some data:
d1 = [[5,10],[10,15],[12,15],[15,18],[20,23]]
and I have a table with text inputs:
#
Quantity
Price
>
> >
> > 5
> > > size="8">
> > > size="8">
> >
> >
> > 6
> > > size="8">
>
> >
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
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 input').c
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 clueTips,
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
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 fo
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");
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 co
-text").hide();
> });
>
> It's not ideal as it's called every time a branch loads whereas it
> really only needs to be called the first time. And it feels a bit
> dirty. I'd still like to know how the animation works. :)
>
> thanks
> max
>
> On Jun 1
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 Will
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() && tr.f
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
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 th
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 edg
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 can'
the
> autocomplete and prevent bubbling in case of a paste event - maybe
> that isn't even necessary, as long as you change the content of the
> field before the autocomplete-event-handler sees it.
>
> Regards
> Jörn
>
> On Sat, May 17, 2008 at 12:33 AM, rolfsf <[EMAIL
One of our developers was working with the jquery Autocomplete plugin
and asked about a couple things that I don't know of:
Is there a way to hook into the event that sets the value of the
textbox?
Basically what I need to do is override the method that sets the
textbox value with one of our own
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?
__
> Karl Swedbergwww.englishrules.comwww.learningjquery.com
>
> On May 15, 2008, at 3:04 PM, rolfsf wrote:
>
>
>
> > 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 jus
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')
.live
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 wh
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?
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 (w
Isn't that invalid? Shouldn't the iframe be wrapping the UL?
it just doesn't look right - am I crazy?
rolfsf
it one step further and I completely removed the
> 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.
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();
and
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
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
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 i
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 the
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 re-i
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
>
e.html
click on any 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
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
Thank Ariel
So the first line creates a variable of all the text,
line 2a puts an initial , and then splits the text at each line
break adding , and finally adding the final
Line 3 wraps the whole thing in an (so jQuery automagically
closes the tag?)
thanks so much
rolfsf
On Apr 11, 2:57 pm
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
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
adding a click event to the iframe doesn't appear to do anything.
Any suggestions?
thanks
rolfsf
tabID and tabName are the results of some 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
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:
TabID).append('new tab ' + tabNum + '');
return false;
});
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 (append
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
l IDs? e.g. #appendedTab_1,
#appendedTab_2
Also, is it possible to 'append' the *first* tab - in other words, add/
create a tab to an 'empty' container?
Thanks - this is the first time I've delved into the more advanced
variations with this plugin
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
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 H
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... any
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 t
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? I
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
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):
>
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
--
this
that
this didn't work (as well as several other variations):
$('a.cancel').click( function
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
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 al
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:
> http://www.pengoworks.com/workshop/jquery
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 : http://www.malsup.com/jquery/f
I believe it's Klaus...
http://www.stilbuero.de/2007/10/23/jquery-ui-tabs-aka-tabs-3/
Rick Faircloth wrote:
>
> Hi, all.
>
> Who is the author of the UI/Tabs Plug-in?
>
> Rick
>
>
--
View this message in context:
http://www.nabble.com/Author-of-UI-Tabs-Plug-in--tp14977932s27240p14978
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:
http://www.nabble.com/
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);
ba
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.
t;> $(this).addClass("thisRow").siblings().removeClass("thisRow");
>> var job = $(this).attr('id')
>> var details = (job + '.htm')
>> $("#console").load(details);
>>
ide();
>});
>
> See also:
> http://docs.jquery.com/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
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. Ho
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 = $(this)
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
1 - 100 of 160 matches
Mail list logo