Hi! I'm Jorge Pedret...

Jorge Pedret I’m a creative, self-taught Web Developer with +7 years of experience.

Currently living in Vancouver, Canada, I’ve worked from washing dogs at a pet store to managing large web applications.

I love outdoors & thinking of new ideas for the web. When not in my computer, I’m traveling around the world with my girlfriend & my guitar.

06 July 2010 ~ 0 Comments

CSS won’t style my HTML5 markup in Internet Explorer!

CSS won’t style my HTML5 markup in Internet Explorer!

You built your whole website using html5 new shiny tags, you’re so proud of yourself, it looks great in your development browser. Time to give it a test in Internet Explorer to see what it looks like. It looks a lot worst than you was expecting… What the heck is going on?

Make html5 work under ie6, ie7 & ie8 by adding this small JavaScript code.

23 May 2010 ~ 2 Comments

How to write effective web content?

Content is the reason why people visit your website. They are searching for information. If they can’t quickly find what they’re looking for, they leave.

Learning how to make your content easy to access, helps your visitors find what they’re looking for. They don’t want welcome messages or animated splash pages. They want to find what they came for… and quickly.

18 April 2010 ~ 0 Comments

HTML5 – What you really need to know

HTML5 – What you really need to know

Quick reference for designers & developers who just want the facts.

An update and comparison between the html we’ve been working on for years and the new html5.

What’s new, What was removed, What was changed and what’s the current browser support.

Tags: ,

12 March 2010 ~ 0 Comments

Designing for the Social Web – Book Review

I just finished reading a really really good book called ‘Designing for the Social Web‘ written by Joshua Porter (@bokardo). By using real life examples he breaks down the steps needed to take users from being unaware of your web to being passionate users (your ultimate goal).
The most important lessons I learned?
If I would have [...]

19 February 2010 ~ 0 Comments

Use jQuery to select child element

Suppose you have the following structure:

<div class="section">
<h3 class="title">Title</h3>
<span class="description">…</span>
</div>
<div class="section">
<h3 class="title">Title</h3>
<span class="description">…</span>
</div>

This code will let you access the child elements of ‘.section’ when you use an ‘each’ function

<script type="text/javascript">
$(function(){
$(‘.section’).each(function(i,element){
$(‘description’,this).fadeOut(100).fadeIn(100).fadeOut(100).fadeIn(100).fadeOut(100).fadeIn(100);
});
});
</script>

I hope this helps someone, I kept forgetting how to do this, so this is mostly a reminder for myself.
Source: http://stackoverflow.com/questions/306583/jquery-this-selector-and-children/306904#306904

23 November 2009 ~ 0 Comments

Posting from my iphone

So I’m just testing this new wordpress feature that allows you to post from your mobile device… You only need to enable xml-rpc in your blog configuration, install the wordpress iPhone free application, enter your admin information and you are ready to post! You can also moderate comments, and manage your pages! It’s pretty cool! [...]

Tags: ,

08 October 2009 ~ 0 Comments

How to Scare IE Users into Upgrading with only ONE Line of Code?

Simply put:

<!–[if lt IE 7]><style type="text/css">@import url(http://www.joelevi.com/securityupdate/bar.css);</style><div id="advBrowserWarning"><a href="http://www.joelevi.com/securityupdate/securityAlert.html"><b>WARNING!!!</b> Your version of Internet Explorer has known security issues! To protect your computer please correct this now. Click here for options…</a></div><![endif]–>

This is a great idea! I just found this post that talks about a technique for scaring the crap out of IE6 users… Although is something [...]

07 October 2009 ~ 0 Comments

Wordpress Code Highlight

While I was writing the last post, I was trying to find a nice code highlighter with this requirements:

Keep Indentation: I want to code to look nice, but if it’s not indented correctly as I submit it, then it’s garbage
Support Different Languages: I’m going to be writing post about Javascript, PHP, XHTML and I need [...]

06 October 2009 ~ 0 Comments

How to fix z-index problem in ie7 with jQuery?

A quick post, I was just having problems in my website with my beautiful picture showing on top of everything. It was showing fine in FF but in Internet Explorer 7 it was showing behind, so you could only see like half of my face and that’s not fare for anyone.
I found this cool website [...]

Tags: , , , , ,

06 October 2009 ~ 0 Comments

Welcome to Web Development Talk blog :)

As you might have seen in my home page, I’m a web developer with more than 5 years of experience. As most passionate computer people, I started in computers when I was very young and I’ve never lost my passion for my work (it doesn’t mean I haven’t got frustrated, angry and desperate when I [...]