## jQuery Bindings for [GopherJS](http://github.com/gopherjs/gopherjs) ## Install $ go get github.com/gopherjs/jquery ### How To Use welcome.html file: ```html Welcome to GopherJS with jQuery ``` welcome.go file: ```go package main import "github.com/gopherjs/jquery" //convenience: var jQuery = jquery.NewJQuery const ( INPUT = "input#name" OUTPUT = "span#output" ) func main() { //show jQuery Version on console: print("Your current jQuery version is: " + jQuery().Jquery) //catch keyup events on input#name element: jQuery(INPUT).On(jquery.KEYUP, func(e jquery.Event) { name := jQuery(e.Target).Val() name = jquery.Trim(name) //show welcome message: if len(name) > 0 { jQuery(OUTPUT).SetText("Welcome to GopherJS, " + name + " !") } else { jQuery(OUTPUT).Empty() } }) } ``` Compile welcome.go: $ gopherjs build welcome.go ### Tests In the "tests" folder are QUnit Tests, run the server with: "go run server.go" and open a browser: http://localhost:3000 The relevant QUnit Test cases are defined in the test/index.go file. ### Sample Apps ported from Javascript/Coffeescript to GopherJS Look at the Sample Apps to find out what is working and how. Any feedback is welcome ! - [TodoMVC, jQuery Example](https://github.com/gopherjs/todomvc) - [Flappy Bird, Math Edition](https://github.com/rusco/flappy-math-saga) - [Simple Tabata Timer](https://github.com/rusco/tabata-timer) - [QUnit](https://github.com/rusco/qunit) ### Status The normal DOM / Ajax / Deferreds Api is done and can be considered stable. Please look up the index.go file in the test folder to see how it works.