<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml-stylesheet type='text/xsl' href='docs.xsl'?>
<docs>
<method cat='Core' type='function' short='Removes named data store from an element.' name='removeData'>
<desc>This is the complement function to $(...).data(name, value).</desc>
<params type='String' name='name'>
  <desc>The name of the data store property to remove.</desc>
</params>
<examples>
<desc>Set a data store for 2 names then remove one of them.</desc>
<code>$("span:eq(0)").text("" + $("div").data("test1"));
$("div").data("test1", "VALUE-1");
$("div").data("test2", "VALUE-2");
$("span:eq(1)").text("" + $("div").data("test1"));
$("div").removeData("test1");
$("span:eq(2)").text("" + $("div").data("test1"));
$("span:eq(3)").text("" + $("div").data("test2"));
</code>
</examples>
</method></docs>
