mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-22 07:04:43 +00:00
fixed dom selection issue
This commit is contained in:
parent
1675d44bff
commit
db87885f60
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@
|
|||
$.get("../", searchMap, function(data) {
|
||||
$.each(data, function( i, avg ) {
|
||||
var tablename = avg.point + " " + avg.agent + " " + avg.pathname + " " + avg.agent_version,
|
||||
$table = $( "table > caption:contains(" + tablename + ")");
|
||||
$table = $( "table > caption:contains(" + tablename + ")").parent();
|
||||
|
||||
if( !$table.length ) {
|
||||
$table = $( "<table></table>", {
|
||||
|
|
|
|||
Loading…
Reference in a new issue