Wikipedia:WikiProject User scripts/Scripts/Get Page Name

This is an old revision of this page, as edited by Jo-Jo Eumerus (talk | contribs) at 14:20, 26 March 2017 (Jo-Jo Eumerus changed the content model of the page Wikipedia:WikiProject User scripts/Scripts/Get Page Name from "wikitext" to "JavaScript": JS page). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
/*<pre>*/
/*Returns the name of the page. For example, if you were browsing the "[[foo]]" WP page, getPname() would return "foo".*/
function getPname() {
  return wgPageName.replace(/_/g, ' ');
}
/*</pre>[[Category:Wikipedia scripts]]*/