purescript-jquery icon indicating copy to clipboard operation
purescript-jquery copied to clipboard

Type declarations for jQuery

Results 8 purescript-jquery issues
Sort by recently updated
recently updated
newest added

The FFI code relies on the `jQuery` global var which makes it difficult to bundle all the deps with browserify. If one of your dependencies has `require('jquery')` in there and...

I'm not sure what is the best direction to take this library, and I don't have a use for it right now, so it would probably be better if someone...

The $(..).attr(String, String) is the right type for this function. `setAttr :: forall eff a. String -> a -> JQuery -> Eff (dom :: DOM | eff) Unit` should be...

There are some great DOM wrappers here -- any chance for getting wrappers for the AJAX stuff as well?

Would it make sense to include `$(..).data`?

I see there is no a getAttr function, but there is a setAttr is there a reason for this? or just pending feature?

It looks like the only thing you can us as a selector is String, but it's heavily overloaded in jQuery. e.g. `$(document).ready`, `$(window).on("popstate")`, `$(document.body)`, `$($("why"))`. Has anyone given this any...

### Context First off I'm not sure what the long term goal of this library is, whether it is to provide an API that mirrors JQuery's close as possible (if...