is there any attribute available in html table td where i can save my data and get it easily using jquery. Like suppose i have
<table>
  <tr>
    <td>Cell A</td>
    <td>Cell B</td>
  </tr>
</table>
From above snippet, I can get Cell value through using html function of jquery but i want something like this
<table>
      <tr>
        <td dataSaveHere>Cell A</td>
        <td dataSaveHere>Cell B</td>
      </tr>
    </table>
That i store some values in td so that later i can access it easily
 
     
     
    