blaedj

Results 6 comments of blaedj

I had a similar issue - the dynamic content that I wanted to be searchable was always inside a `div#searchable`. When the user performed certain actions, the content would change...

After some debugging, it appears that this happens because the [init](https://github.com/stidges/jquery-searchable/blob/16388727dd88f736d670186957fe5b77cb6caed4/jquery.searchable.js#L44-L52) function is only called once per element, regardless of how many times you call `$('#element').searchable()` on a given element....

Hmm, the selector `$(''#searchable.dynamic-content")"` was wrong in my comment, should have been `$("#searchable .dynamic-content")`. I've fixed it now, thanks for finding that. As far as your other questions, see [this...

note that the above output comes from a laptop running macOS 10.14.6

Thanks Pat. I turned the above code into a PR for #115 (see https://github.com/ayaman/filterrific/pull/2), so hopefully both are merged soon!

I found that locking and unlocking my macbook was enough to apply the changes. ``` defaults write NSGlobalDomain KeyRepeat -int 1 defaults write NSGlobalDomain InitialKeyRepeat -int 10 ``` Seems as...