Hi,
i create this dform
<form id="container"></form>
<script>
jQuery("#container").dform({
"type":"ul",
"name":"ulxx",
"id":"ulxx",
"html":[
{
"type":"li",
"html":"AAAA"
}
]
});
//now i want append li tag
</script>
tried...but don't work (create another ul with same id and name !!!!)
-----------------------------------
jQuery("#container").dform({
"type":"ul",
"name":"ulxx",
"id":"ulxx",
"html":[
{
"type":"li",
"html":"BBBBBBBBBBB"
}
]
});
tried...but don't work (create another ul with same id and name !!!!)
-----------------------------------
jQuery("#container").dform("append",{
"type":"ul",
"name":"ulxx",
"id":"ulxx",
"html":[
{
"type":"li",
"html":"BBBBBBBBBB"
}
]
});