Introduction: In this article,i am going to explain about how to retrieving the xml node value/data using jquery. Main: Here i am going to use one xml file named Employees.xml, <?xml version="1.0" encoding="utf-8" ?> <Employees> <Employee> <EmpId>101</EmpId> <name> <firstname>Ann</first-name> <lastname>Jerold</last-name> </name> <address> <street> 22/10 peter avenue </street> <city> Dallas </city> <state> NJ </state> </address> </Employee> [...]
Category Archives: AJAX
Getting fetching reading retrieving xml node value/data using jquery asp.net
Posted by on July 22, 2010
0 comments
How to hide a selected table column/row using jquery asp.net
Posted by on July 22, 2010
1 comment
Introduction: In this article,i am going to explain about how to hiding a selected table column/row using jquery. Main: See this below jquery code,it will hide the selected column in a table, $(document).ready(function() { $(’th’).hover( function(){ var colindex=$(this).parent().children().index(this); $(this).addClass(’hover’); $(’table td:nth-child(‘+(colindex+1)+’)').addClass(’hover’); }, function(){ $(’table tr’).children().removeClass(’hover’); } ); $(’th’).click(function(){ $(this).hide(); colindex=$(this).parent().children().index(this); $(’table td:nth-child(‘+(colindex+1)+’)').hide(); }); }); [...]