Op 15-09-12 18:51, Paul schreef: > I am unaware of an *easy* way to write anything in js to accomplish my > staff's request. However, here's the fix (Mark, if you think this could > be of use to the community as you suggest above, please disseminate it > as an enhancement, bug, whatever ...) which was remarkably easy, once I > found the relevant code. FYI, Firebug does not appear to be of much use > tracking down things like these.
Mark is right, your fix is a bad idea. Here is how to do it properly. 1) using firebug, determine the ID of the tabs bit, it turns out to be header_search. 2) look up what this jquery ui-tabs thing is, which will take you to: http://jqueryui.com/demos/tabs/ 3) poke around and see that the 'selected' option looks like the kind of thing that we might want. 3.5) play around with this in the firebug console to make sure we have everything right. 4) write the following JS into the intranetuserjs box: $(function() { $('#header_search').tabs({selected:2}); }); 5) go have a beer because that was pretty quick :) 5.5) apologise to firebug because it was pretty useful after all, then consider that perhaps you had too many beers, and talking to bits of software is rarely constructive. Put your phone away so you don't drunk-dial someone. -- Robin Sheat Catalyst IT Ltd. ✆ +64 4 803 2204 GPG: 5957 6D23 8B16 EFAB FEF8 7175 14D3 6485 A99C EB6D
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Koha-devel mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
