Property values ​​in a CSS div jQuery

This is a very basic tip, basically consists in knowing what the value of a CSS property, through jQuery.

For example:

#div{display: none}

To know the value of this div in jQuery, addresses the following code statement:


var value = $('#div').css('display');
if(value == 'none'){
/*What you do*/
}else{
/*What you do*/
}

Until next time.


Event click, Attr, Event.PreventDefault, images change work

First of all, I start to write in English from now on will be very personal things in Spanish, or who knows … but will include English language at my blog, for a test of how far my article.

This is a small image change work for a catalog of products from a customer in theadvertising agency where I work, something simple but very useful, to make an image gallery and clicking will change the main image .

$('a.thumb').click(function(event){
event.preventDefault();
var rel = $(this).attr('rel');
$('img').attr('src',rel);
});

I do not think i have to explain code jQuery, if is doubt comment on the article.

Well, i finish as usual…

Until next time.


Como vencer a Internet Explorer con Jquery

Increíble, recordé que tenia blog y por sobre todo que me gustaba escribir mis vivencias. Por este motivo es que mi vida últimamente se ha transformado en desarrollar sitio web, ahora último desarrollar aplicaciones de gestión, también proyecciones personales, familia, novia y finalmente la tesis. Aunque tengo que reconocer que había olvidado este blog por flojera, porque no estaba escribiendo nada, solo trabajando, pero transformare este pequeño antro de mala clase, en mi lugar de experiencias laborales y experiencias personales.

Read the rest of this entry »