Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 244 Bytes

readme.md

File metadata and controls

15 lines (12 loc) · 244 Bytes

GoQuery

import (
    . "github.com/StompRocket/GoQuery/goquery"
)

func main() {
    someDiv, err := Q(".some-div")
    if err != nil { panic(err) }

    someDiv.ClassList.Add("another-class")
    println(someDiv.ClassList.Value)
}