Category: front-end development
« Previous Entries Next Entries »
January 6, 2008
There are lots of examples of using CSS to add filetype icons to links, but they all rely on advanced CSS selectors, which Internet Explorer 6 doesn’t support.
If you’re looking for a cross-browser method of adding filetype icons to links, you have a couple of choices: you can add a class name to all [...]
Categories: front-end development, howto, jquery |
6 Comments »
January 4, 2008
I came across The End of Web Frameworks in my dzone RSS feed this morning, and it echoes a thought that runs through my brain as I get more and more comfortable with jQuery: who needs the server when you’ve got Javascript? Wouldn’t it be great if the server just handed out data, and the [...]
Categories: front-end development, javascript, thoughts |
1 Comment »
December 26, 2007
In the summer of 2006, I decided to put together a small web site to show the work I’d been doing, in hopes of landing a full-fledged web job. It didn’t take long before I had an offer from webslingerz, where I’ve been for the last year and a half.
I’ve updated my resume a [...]
Categories: front-end development, javascript |
1 Comment »
December 24, 2007
I remember when I first tried to understand how to produce designs for the web — coming from the paper-based world, it was hard for me to accept everything that was suddenly out of my control. When I first tried to grasp CSS with the help of now-defunct Adobe GoLive, I bailed pretty quickly. Table-based [...]
Categories: css, front-end development, standards, thoughts |
Tags: css, how-to, tutorial | 5 Comments »
December 23, 2007
When I started this about a month ago, I just grabbed a template that didn’t look too awful, changed a few colors, got rid of all the pixel-based font-sizing, and hoped that no one would look under the hood until I had some time to do it myself from scratch. With the holidays here, I [...]
Categories: blogging, css, front-end development, standards |
Tags: themes, wordpress | No Comments »
December 17, 2007
I just got done with a first draft of the graphTable plugin, which lets you take a simple HTML table and turn the data in it into a graph using jQuery and flot. Here’s a demo, and here’s the jQuery plugin page where I’ll continue development if there’s any interest.
The most basic usage is simple:
$(’#table1′).graphTable({series: [...]
Categories: front-end development, javascript, jquery, plugins |
Tags: flot, graph, table, tabular data | 21 Comments »
December 14, 2007
I just got done troubleshooting an issue with a page with some jQuery on it. The jQuery was in a script called from the head of the document, and its job was to rearrange some elements into tabs once the page was loaded.
In unpredictable cases (sequential reloads had different results), loading the page in [...]
Categories: front-end development, jquery, troubleshooting |
No Comments »
December 11, 2007
I’m working on a new template for a client, and they asked me to display some list elements in a random order on each page load. I did my Google due diligence, but didn’t come up with anything that wasn’t slideshow-like — what I wanted was just something that would show all of the children [...]
Categories: front-end development, javascript, jquery, plugins |
Tags: jquery | 3 Comments »
December 11, 2007
Microsoft has released yet another version (the third, I think) of their timebombed XP/IE6 image for use with their Virtual PC Console. (Why they keep timebombing it is a mystery to me — it’s as if they think one of these days, approximately six months from whenever they release a new version, there won’t be [...]
Categories: front-end development |
No Comments »
December 10, 2007
Two good ones from today:
cygwin/perl: change all references to portfolio.html to portfolio_d.html.
perl -i -p -e ’s/portfolio\.html/portfolio_d.html/g’ *.html
More perl command line goodness here.
vim: on every line that has an element with an id attribute, take the value of that attribute and use it as the argument for a php command.
g/id="\([^"]\+\)"/ s/id="\([^"]\+\)"/value="<?php $io->p(’\1′); ?>" id="\1"/
More on [...]
Categories: command line, front-end development |
No Comments »
« Previous Entries Next Entries »