Example of Basic Search

Search for Books, Journals, Articles, Digital Items, and more simultaneously.

Basic Search Code

<!-- Main Basic Search Form -->
<form name="searchForm" method="get" target="_self" action="http://utah-primoprod.hosted.exlibrisgroup.com/primo_library/libweb/action/dlSearch.do" 
	enctype="application/x-www-form-urlencoded; charset=utf-8" onsubmit="searchPrimo()">

	<p>Search for Books, Journals, Articles, Digital Items, and more simultaneously.</p>
	
	<!-- Customizable Parameters  -->
	<input type="hidden" name="institution" value="01UTAH" />
	<input type="hidden" name="vid" value="UTAH" />
	<input type="hidden" name="tab" value="everything" />
	<input type="hidden" id="search_scope" name="search_scope" value="EVERYTHING"/> 
	<input type="hidden" name="mode" value="Basic" />
	
	<!-- Fixed parameters -->
	<input type="hidden" name="displayMode" value="full">
	<input type="hidden" name="bulkSize" value="10">
	<input type="hidden" name="highlight" value="true">
	<input type="hidden" name="dum" value="true">
	<input type="hidden" name="query" id="primoQuery">
	<input type="hidden" name="displayField" value="all">
	<!-- Enable this if "Expand My Results" is enabled by default in Views Wizard -->
	
	<input type="hidden" name="pcAvailabiltyMode" value="true">
	<input type="text" id="primoQueryTemp" value="" size="35">
	<input class="btn" id="go" title="Search" onclick="searchPrimo()" type="button" value="Search" alt="Search" />
</form>
<script type="text/javascript">
  function searchPrimo() {
   document.getElementById("primoQuery").value = "any,contains," + document.getElementById("primoQueryTemp").value;
   document.forms["searchForm"].submit();
  }
</script>
<!-- End Main Basic Search Form --> 

Example of Login to Library Catalog

Login to Library Catalog

Login to Library Catalog Code

<a href="https://utah-primoprod.hosted.exlibrisgroup.com/primo-explore/login?vid=UTAH">Login to Library Catalog </a>

Example of Library Account Link

My Library Account

Library Account Link Code

<a href="https://utah-primoprod.hosted.exlibrisgroup.com/primo-explore/account?vid=UTAH&section=overview&lang=en_US">My Library Account </a>

Example of Advanced Search Link

Advanced Search

Advanced Search Link Code

<a href="http://utah-primoprod.hosted.exlibrisgroup.com/primo-explore/search?vid=UTAH&lang=en_US&sortby=rank&mode=advanced">Advanced Search</a>

Example of Course Reserves Search

Course Reserves Search Code

<!-- Search Course Reserves Form --> 
<form class="form-inline" id="simple" name="searchForm" method="get" target="_self" 
	action="http://utah-primoprod.hosted.exlibrisgroup.com/primo-explore/search" 
	enctype="application/x-www-form-urlencoded; charset=utf-8" onsubmit="searchCR">
		
	<!-- Customizable Parameters -->
	<input type="hidden" name="institution" value="01UTAH" />
	<input type="hidden" name="vid" value="UTAH" />
	<input type="hidden" name="tab" value="uuu_alma_cr_restricted" />
	<input type="hidden" name="search_scope" value="UUU_ALMA_CR_RESTRICTED" />
	<input type="hidden" name="mode" value="Basic" />
	
	<!-- Fixed parameters -->
	<input type="hidden" name="displayMode" value="full" />
	<input type="hidden" name="bulkSize" value="10" />
	<input type="hidden" name="highlight" value="true" />
	<input type="hidden" name="dum" value="true" />
	<input type="hidden" name="query" id="primoQueryCR" />
	<input type="hidden" name="displayField" value="all" />
	
	<!-- Enable this if "Expand My Results" is enabled by default in Views Wizard -->
	<input type="hidden" name="pcAvailabiltyMode" value="false" />
	<input type="search" id="primoQueryTempCR"  size="50" maxlength="255" placeholder="Search Course Reserves" />
	<button type="submit" class="btn" onclick="searchCR()"><span class="sr-only">Search</span></button>
</form>

<script type="text/javascript">
	function searchCR() {
		document.getElementById("primoQueryCR").value = "any,contains," + document.getElementById("primoQueryTempCR").value.replace(/[,]/g, " ");
		document.forms["searchForm"].submit();
	}				

</script>
<!-- End Search Course Reserves Form -->