Deci, daca scriu intr-un fisier .js codul:
Cod: Selectaţi tot
$(document).ready(function(){
var Text = $('#friends').text();
//Hide the div #prieteni and #mesajP
$('#friends').hide();
$('#form_msg').hide();
//slideToggle the div #prieteni and rename the div #prieteni1
$('#friends').click(function(){
$('#show_friends').slideToggle(function(){
if ($('#show_friends').is(':visible')) {
$('#friends').text('Ascunde prieteni');
}else{
$('#friends').text(""+Text+"");
}
});
});
//slideToggle the div #mesajP and rename the div #mesaj
$('#send_msg').click(function(){
$('#form_msg').slideToggle(function(){
if ($('#form_msg').is(':visible')){
$('#send_msg').text('Ascunde formular');
} else {
$('#send_msg').text('Trimite mesaj privat');
}
});
});
$('#text').hover(function(){
$('#text').fadeTo('slow', 0.4);
});
$('#text').mouseout(function(){
$('#text').fadeTo('slow', 1.0);
});
//Close the document ready function
});