I am attempting to use Greasemonkey and jQuery 1.4.2. When I install the Greasemonkey script jQuery is definitely downloaded and appears in the scripts directory. However the below code doesn't append anything to elements with the class PAPAGETITLE
. What am I doing wrong?
// ==UserScript==
// @name PS Timesheet
// @namespace http://www.steelebit.com/gmscripts
// @description Used to fix a terrible implementation
// @include https://intranet.site.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
// ==/UserScript==
// Append some text to the element with id #someText using the jQuery library.
$(".PAPAGETITLE").append(" more text.");