Skip to content
View lukesalisbury's full-sized avatar

Block or report lukesalisbury

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Wrapper around XHR or Fetch, allows ... Wrapper around XHR or Fetch, allows for automatic retrying of request. Single Callback function passing XMLDocument, JSON, string or Error object type
    1
    /* WebRequest */
    2
    /* Request Object {
    3
     *  type - POST/GET
    4
     *  dataType - Returned Data Type
    5
     *  url - the URL (On GET request, URL() will ignore data
  2. Javascript: Check to Select Element ... Javascript: Check to Select Element is not disabled, and move to enable element if required
    1
    // Return true if selected element is not disabled, if it is disabled, 
    2
    // the selected element will move to the first non disabled element if possible
    3
    HTMLSelectElement.prototype.validateElement = function () {
    4
    	if (this.selectedIndex != -1) {
    5
    		if (!this.children[this.selectedIndex].disabled) {
  3. fetchtv fetchtv Public

    Downloads recording from a FetchTV STB (Aus)

    C++ 3

  4. GenScript GenScript Public

    Generates Ninja build files for multiple platforms for C/C++ projects

    C