We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fbbfc4b + 6eb92ad commit a27a4f4Copy full SHA for a27a4f4
jquery.go
@@ -419,13 +419,13 @@ func (j JQuery) InsertBefore(i interface{}) JQuery {
419
return j
420
}
421
422
-func (j JQuery) Show() JQuery {
423
- j.o = j.o.Call("show")
+func (j JQuery) Show(i ...interface{}) JQuery {
+ j.o = j.o.Call("show", i...)
424
425
426
427
-func (j JQuery) Hide() JQuery {
428
- j.o.Call("hide")
+func (j JQuery) Hide(i ...interface{}) JQuery {
+ j.o.Call("hide", i...)
429
430
431
0 commit comments