Note: This site is currently "Under construction". I'm migrating to a new version of my site building software. Lots of things are in a state of disrepair as a result (for example, footnote links aren't working). It's all part of the process of building in public. Most things should still be readable though.

Web Search Forms

TODO: turn this back into code that processes

Code

<p>A collection of search forms for sites I use frequently.</p>

<a href="#" onclick="someCall('asdfasdfasdfasdf');">here</a>

<div id="testId" >start</div>

<div id="formWrapper">

	<form action="http://sjcpls.ipac.sirsidynix.net:81/ipac20/ipac.jsp?profile=dial&amp;lang=eng&amp;reloadxsl=true#focus" method="GET">
		<input name="index" type="hidden" value=".GW" />
		<input name="term" size="20" type="text" />
	</form>

</div>

<script>

	
	function someCall(aNewValue) {
		document.getElementById('testId').innerText = "asdfasd234" + aNewValue;
	}
	
	
</script>