jQuery:Looping all radio buttons inside an HTML table -


I have an HTML table with n rows and each row has a radiobutan in Roe. Using JQuery, how can I check which radio button is checked to check?

  $ ('[type = radio]'). Each (function () {warning ($ (this) .attr ('checked'));};  

H.H.


Comments