Click here to Skip to main content
15,897,704 members

Comments by baotdinh (Top 27 by date)

baotdinh 28-Aug-17 13:17pm View    
Yes, i will. But i really want to know what are advantages between them, because sometimes i only code, code but i can not realize the differences.
baotdinh 20-Jan-17 13:06pm View    
Thanks. but i want to ask if i wanna use SQLDependency to do . Is it ok or should not ?
baotdinh 5-Jan-17 16:47pm View    
Thank for your explanation
baotdinh 14-Nov-16 13:09pm View    
if toogle is not working :
Use this one:
$("#hide").click(function(){
var displayStyle = $('#hideme1').css('display');

if(displayStyle != 'none'){
$("#hideme1").hide();
$("#hideme2").hide();
$("#hideme3").hide();
$('#hide').text('Show Descriptions');
}else{
$("#hideme1").show();
$("#hideme2").show();
$("#hideme3").show();
$('#hide').text('Hide Descriptions');
}


});
baotdinh 12-Nov-16 2:16am View    
post your html too