-
Recent Posts
Categories
Blogroll
Tags
Join Me!
Tag Archives: Tutorials
Github Repository Creation For Dummies
If you’re like me, an interface designer/developer, not a hardcore back-end developer, and you do what you can to avoid the terminal, github can be daunting, especially during the setup process of creating a repository. The GUI interfaces for github … Continue reading
Using Variables in JQuery Selectors
If you want to use variables in combination with CSS-style selectors like so: $(“#navigation a.myHomePage, ” + logo).hover(function() { $(“li.home”).addClass(“homeRoll”); }, (function() { $(“li.home”).removeClass(“homeRoll”); }); Make sure your variable homePageImage is written as a string: var homePageImage = “#logo” not … Continue reading
Textarea Scrolling in Firefox
1. Firefox will put a vertical AND horizontal scrollbar on a textarea by default. To get rid of the horizontal scrolling, use this: overflow-y: scroll; (or overflow-y: auto if you don’t want your scrollbar to appear if it’s not needed) … Continue reading