I am implementing this Jquery Mobile Table in my PHP web page.
I am running into a problem however. Because I am working in PHP, I am unable to use tags such as <table data-role="table" data-mode="columntoggle" id="my-table"> inside my code.
For example:
echo "<table data-role="table" data-mode="columntoggle" id="my-table">
<tr><th data-priority="1">Mare</th><th data-priority="2">Stallion</th><th data-priority="3">Covering Date</th><th data-priority="5">Ovulation Scan</th><th data-priority="6">Pregnancy Scan</th></tr>";
...does not work. Is there anyway of working around this?