Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the file name specified in the href or src property of the object.
Syntax
JavaScript |
p = object.nameProp |
Property values
Type: String
the name of a file specified by the object, not including the path or protocol.
Examples
This example uses the nameProp property to set the innerText property of a link to the file name specified by an a element.
<script type="text/javascript">
window.onload=fnInit;
function fnInit(){
oLink.innerText=oLink.nameProp;
}
</script>
<a id="oLink"
href="https://msdn.microsoft.com/workshop/author/dhtml/dhtmlrefs.asp">
</a>