jQuery Treeview: Preopened child-node is invisible/hidden

jQuery Treeview is very nice lightweight and flexible transformation of an unordered list into an expandable and collapsable tree, great for unobtrusive navigation enhancements. Supports both location and cookie based persistence.

When I started using Treeview I found problem with pre-opening child nodes. While first level nodes are pre-opening just fine, the chidren of parent nodes do not shows up.

The problem is in prepareBranches function, where script hides all nodes which don't have 'open' class.
Yes, as you probably suspect it hides also parents of node which has this 'open' class.

jQuery Impromptu: How catch form data on submit using enter key event

Just quick post about jQuery Impromptu Extension which I made.

I'm using jQuery Impromptu as my popup/dialog/propmt tool and it's great.

But I run into huge problem with proper form submiting on enter key event.

Enter key event handling inside forms opened via the prompt are missing in jQuery Impromptu 3.1. So, after enter key hit, you could pass form data to submit function instead of page reload.

I had a situation where I had login and registration form on one prompt, and imagine what a problem was when you input your user name and pass, hit enter and...... and nothing happen.

My extension solve this problem. Read more about jQuery Impromptu Extension