Re: [ClojureScript] Re: REPL setup help

2017-08-03 Thread Colin Fleming
Hi Rob, I'll follow up with you about this to your message on the Cursive list, since it's getting pretty Cursive specific. Cheers, Colin On 4 August 2017 at 00:25, Rob Nikander wrote: > I got this working, but I'm seeing very strange behavior that makes it > unusable.

[ClojureScript] Clojurescript equivalent for JS to access table rows

2017-08-03 Thread Zainil Maredia
Jquery to get the table td values $('#table1 tbody > tr').each(function() { name = $(this).find('td.name').text(); id = $(this).find('td.id').text(); } What will be clojurescript equivalent of the above jquery? -- Note that posts from new members are moderated - please be patient with your

Re: [ClojureScript] Re: REPL setup help

2017-08-03 Thread Rob Nikander
I got this working, but I'm seeing very strange behavior that makes it unusable. IntelliJ can hang and overuse CPU on certain expressions. It will happen, for example, if I type the following in the IntelliJ Cursive REPL connected to Figwheel/ClojureScript... cljs.user=> (deftype Foo [a])