Click here to Skip to main content
15,884,388 members

Comments by Dukhabandhu Sahoo (Top 4 by date)

Dukhabandhu Sahoo 20-Oct-14 8:39am View    
You can check http://it-ebooks.info/book/903/ book.
Dukhabandhu Sahoo 9-Oct-14 12:13pm View    
Good solution. You can also combine the statements to display the first 2 and last row like:

$(document).ready(function(){

$("#myTable tr").hide();
$("#myTable").children('tbody').children('tr:nth-child(1), tr:nth-child(2), tr:last').show();
});
Dukhabandhu Sahoo 12-Sep-14 2:06am View    
There is a similar question at http://stackoverflow.com/questions/396739/how-do-you-determine-what-technology-a-website-is-built-on
Dukhabandhu Sahoo 12-Sep-14 1:40am View    
You can try Tuple (http://msdn.microsoft.com/en-us/library/system.tuple(v=vs.110).aspx) to return multiple values.