World Posts - Lamin Barrow - RSSSyndicated content powered by .geographical mediaRSS syndication makes it easy to receive content updates in My Yahoo!, Newsgator, Bloglines, and other news readers. |
Current Feed ContentEssential web browser tools for the pro web developerTuesday, May 20, 2008 From the beginning of my web development career after high school in the summer of 2006. I have frequently used certain web browser tools or add-ons if you like to aid me in my every day web development. Through the course of time I have learn to use these tools to become a better web developer. In this post, I will make a list of all the web browser tools or add-ons I find most useful to the professional web developer. Firebug In my own opinion Firebug is the most useful out of the crowd of web browser add-ons for the web developer. It has helped me finish task quickly which will otherwise take me hours to finish. It's functionality spans from the ability to inspect page elements and there HTML, edit CSS values and preview results instantly and even set breakpoints in your JavaScript code to aid you in the debugging process.
IE Developer Toolbar
Download IE developer tool bar from here. Fiddler Fiddler is a tool developed by Microsoft for inspecting and debugging web request(s). It runs from your machine and it could be used to debug and inspect internet traffic from virtually any application, including Internet Explorer, Mozilla Firefox, Opera, and a whole lot more. It includes functionality that enable you to run simulated test on the web request and tools that can emulate tweaking it. Hands down fiddler is great for examining what’s under the hood of the web request(http/https). Fiddler is an extremely powerful and feature rich application and it’s not for the faint of heart.
NOTE: In order to run fiddler, you must have at least Microsoft .Net framework 2.0 installed on your computer IETAB HTML Validator
Download HTNL validator from here. Yslow If you put a lot of care into work , Yslow will force you to write server side code depending on the framework you use(AP.NET, PHP, Ruby on Rails, JSP etc) to handle and produce better browser output code .Yslow is developed by Yahoo! and it’s an extension to the already popular Firebug extension. Sometimes i use Yslow to check on the big guys to see who is implementing the best practices and who's not just for fun and most of the times i just laugh at what i see.
Download Yslow from here. This list is by no means an exhaustive list of essential web browser tools for the web developer but merely a representation from my own point of view. If you have any other suggestions please list them in your comments. How to build a live comment preview with Javascript and HTMLThursday, March 27, 2008 In recent times, it has become quite a trendy and nifty trick to show a live comment preview on a lot of blog websites. I remember just how excited i was the first time i saw this in action on a dotnet blogengine application. In this article i will show you how to implement a live comment preview on your website with just simple javascript and HTML. Okay, to get started i will start by creating a javascript(.js) file with the following on it.
As you can see the javascript is almost self explanatory. First, I declared variables and i assigned various id's of the HTML elements i cared about to them from our page. Finally i take the value of the entered comment and placed it as the value of the comment preview. Some of the HTML
<textarea id="CommentBody" onkeydown="ShowCommentPreview();"></textarea>
Finally, i added a HTML attribute to the textarea called the "onKeydown" which is a special javascript thing that we use to wired up the HTML and the javascript method to do the final trick. That's it ... pretty easy thing to do. I hope you will enjoy building it on your own website. Good luck. Download the Sample file live-comment preview.zip (4kb).500+ Free icons for your website or applicationSaturday, February 16, 2008 This is a collection of more than 500 free high quality and crystal clear icons. Head over to wikimedia to download them now. Making a background image hover effect work properly in Internet Explorer 6Monday, February 04, 2008 Earlier today while i was working on a new menu style, i came across a weird bug in IE 6 wherein a background-image for a hover effect just would not disappear even when am not hovering over the link that was suppose to cause the effect. So after spending what seems to be like an hour trying to figure out what was causing the problem..... and finally i added background-repeat: repeat-x; in to my CSS file and that seems to have solved my problem. Before
After
.MenuSo it turns out that i must have background-repeat: repeat-x; in order to make that hover effect work properly in IE6. Very weird indeed. |
| Website created with Lara | .geographical media |