remove name attribute from checklist
This commit is contained in:
@ -42,8 +42,7 @@ $(function(){
|
|||||||
for(var i=0; i<this.sourceData.length; i++) {
|
for(var i=0; i<this.sourceData.length; i++) {
|
||||||
$label = $('<label>').append($('<input>', {
|
$label = $('<label>').append($('<input>', {
|
||||||
type: 'checkbox',
|
type: 'checkbox',
|
||||||
value: this.sourceData[i].value,
|
value: this.sourceData[i].value
|
||||||
name: this.options.name
|
|
||||||
}))
|
}))
|
||||||
.append($('<span>').text(' '+this.sourceData[i].text));
|
.append($('<span>').text(' '+this.sourceData[i].text));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user