(string)
| 284 | } |
| 285 | |
| 286 | html(string) { |
| 287 | if (!this.element) { |
| 288 | return; |
| 289 | } |
| 290 | |
| 291 | if (string === undefined) { |
| 292 | return this.element.innerHTML; |
| 293 | } else { |
| 294 | this.element.innerHTML = string; |
| 295 | } |
| 296 | |
| 297 | return this; |
| 298 | } |
| 299 | |
| 300 | hide() { |
| 301 | return this.css({ display: 'none' }); |