User talk:Marti: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (Original template works ... bleh picky wiki... case sensitive.)
m (retrying multiline with pre tags... works with multiline too albeit a bit weird looking.)
Line 18: Line 18:


Does this work?
Does this work?
{{Bad example|<code><nowiki>element.onclick = "myClickHandler(this)";</nowiki></code>}}
{{Bad example|<pre><nowiki>
GM_xmlhttpRequest({
  method:"GET",
  url:"<nowiki>http://www.greasespot.net/</nowiki>",
  headers:{
    "User-Agent":"Mozilla/5.0",            // Recommend using navigator.userAgent when possible
    "Accept":"text/xml"
  },
  onload:function(response) {
    alert([
      response.status,
      response.statusText,
      response.readyState,
      response.responseHeaders,
      response.responseText,
      response.finalUrl
    ].join("\n"));
    // if you need a responseXML
    var responseXML = new DOMParser().parseFromString(response.responseText, "text/xml");
  }
});
</nowiki></pre>}}
This woiks!
This woiks!
Although multiline doesn't appear to... good luck Photodeus.

Revision as of 10:44, 28 April 2009

{{FULLPAGENAME}}

This wiki's engine is pretty out of date but it isn't that out of date. See: "User talk:Marti"; I was using it on those pages to get alphabetical sort order under "*" for the category (they were out of order). -- BlindWanderer 00:56, 6 April 2009 (EDT)
P.S. You do good work.

I E 7 P r o

Is "I E 7 P r o" a curse word on this wiki (without spaces of course)? -- BlindWanderer 02:04, 6 April 2009 (EDT)

Summaries

You will be pleased to hear I'm going to write a GM script to keep me from submitting until I've written a summary (interesting... when you post a new section there isn't a summary field) -- BlindWanderer 06:22, 6 April 2009 (EDT)

Summaries test

Yes there is... configure you preferences for this wiki... you should have already done that... I also recommend <===(keyword here) that you set minor edits as your default as well and only use major ones for emphasis. Marti 06:32, 6 April 2009 (EDT)


Does this work? Template:Bad example This woiks!