Include js script in page
Scris: Lun Oct 24, 2011
Buna, am si eu o problema cu includerea a unui script jquery in pagina.
Deci, daca scriu intr-un fisier .js codul:
nu face nimic din ce scrie in el, dar, daca-l scriu in pagina, intre <script> atunci merge.... Care ar putea sa fie problema..? thx
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
});