jquery
Submitted by jrowny on Thu, 04/22/2010 - 11:08
A lot of times, people want very specific functionality out of a jquery menu. There are at least 5 or 6 decent jQuery accordion menu plugins out there. But they're all overkill in my opinion.
A jQuery accordion can be as little as 3 lines of code. Here's one in 7 lines of code. And if you do some chaining, probably even less.
$('#accordion li ul').hide();
$('#accordion li a').click(function(){
$(this).parent().addClass('selected');
$(this).parent().children('ul').show('fast');
Submitted by jrowny on Mon, 03/15/2010 - 11:08
Two of my topics were chosen for DrupalCon 2010 in San Francisco!

More details soon.
Submitted by jrowny on Thu, 03/11/2010 - 11:08
Here is the slides to follow along with today's presentation, Theme Ubercart: Make your store shine.
Here is the CSS snippet for CSS buttons.
.node-add-to-cart{
display: block;
cursor: pointer;
cursor: hand;
width: 150px;
height: 50px;
border: 0;
color: transparent;
text-indent: -9000em;
overflow: hidden;
background: url('../images/add_to_cart.png');
}
The customcart module is attached below.
Submitted by jrowny on Mon, 02/22/2010 - 11:08
I'm about to start my session and figured I should follow in Bevan's footsteps and provide a link to the slides.
Click here to follow along with the slides.
Also, attached is a pdf version as well as some snippets.
Submitted by jrowny on Wed, 10/22/2008 - 07:00
So I put together a real quick new site layout. You need to use the arrow keys or your mousewheel to switch between posts. I will add some arrows and such later to make it more clear. I realize that this is not the most practical way to read a blog and many people won't like it. Thankfully, hardly anyone reads my blog, so I can't be upsetting too many people.
I also noticed that the animation runs a LOT smoother on Chrome/Safari than it does on Firefox 3.5. Haven't even bothered to test with IE yet.