#title
x
#title
#text
- SEARCH
- BROWSE
Simple Search
Advanced Search
Browse Publications
<!-- Beta -->
searching Humanities & Social Sciences Collection
Change databases
Back to Table of Contents
Citation only
More information
about this publication
Copyright
Incite
Volume 29 Issue 10 (Oct 2008)
Full Text PDF (Buy Now - AU$4.00 + GST (99KB) )
Institutional users Login to access article
To cite this article: Roberts, Helen. Copyright [online]. Incite, Vol. 29, No. 10, Oct 2008: 18.
Availability:
<https://search.informit.com.au/documentSummary;dn=399950449080294;res=IELHSS>
ISSN: 0158-0876.
[cited 20 Aug 18].
Database: Humanities & Social Sciences Collection
Personal Author:
Roberts, Helen;
Source: Incite, Vol. 29, No. 10, Oct 2008: 18
Document Type: Journal Item
ISSN: 0158-0876
Subject:
Copyright; Copyright licenses; Library legislation; Australian Library and Information Association;
Affiliation:
(1) Copyright Advisor, ALIA, email: helen.roberts@alia.org.au
<!-- -->
'use strict';
$(document).ready(function()
$('input#browse-find-pub').autocomplete(
source: '/findPub',
minLength: 3,
delay: 500,
select: function(event, ui)
$('select[name=subject]').val('').trigger('liszt:updated');
$('select[name=filter]').val('').trigger('liszt:updated');
if (ui.item != null)
$("#browse-find-pub").val(ui.item.value);
$("form.browse-search").submit();
);
// Used in DocumentSummary view.
// Allow extra form values to be added before form is submitted.
$('form').submit(function()
var scope = "";
var scopeChoice = $('input[name=scope]:checked').val();
if (scopeChoice != "")
// Include extra scope details if scope selected is
// 'Issue' or 'Publication'
if (scopeChoice == "issue")
scope = $('input#query_scope_issue').val();
else
scope = $('input#query_scope_pub').val();
// URL decode the phrase embedded in the HTML element.
scope = decodeURIComponent(scope);
// Construct the scope query.
if (scope != "")
scope = ' AND (' + scope + ')';
var query = $('input[name=search_1]');
query.val(query.val() + scope);
);
);