Search GH Jobs

Read moreRead less
Post a Job

Quicklinks

Job Market Overview

Job Skills & Qualification

Salary & Benefits

Searching for Jobs

PREVNEXT

Filter by work location

Filter by work location
Filters

Filter by type

Filter by type

Filter by industry

Filter by industry

Filter by XP Level

Filter by XP Level

Filter by application

Filter by application

Filter by salary

Filter by salary

Filter by work location

Filter by work location
Filters
FiltersFiltersFilters

Tip: Use your left/right arrows on your keyboard as your trusty compass to navigate the jobs.

View Job

Snow Shoveller and Equipment

2081333-snow-shoveller-and-equipment-operator-snow-clearing-services logo
Snow Clearing Services
Entry-Level
Full Time

LINK

Onsite
Others
Tag:
Ottawa, Ontario

View Job

Accounting Assistant – Work onsite

1967251-accounting-assistant-work-onsite-in-makati-global-headstart logo
Global Headstart
Full Time

LINK

Onsite
Accounting
Quickbooks: / General Accounting: /
Makati City, Metro Manila

View Job

Promotor

2080551-promotor-alicante logo
Alicante
Full Time

LINK

Onsite
Architect/Interior Design
Curitiba, PR

View Job

Gestionnaire de comptes clients

2080486-gestionnaire-de-comptes-clients-ipg logo
IPG
Managerial Level
Full Time

LINK

Remote
Accounting
Analytical Skills / Communication Skills / Microsoft Office Proficiency
Montréal, Québec

View Job

Supply Chain Specialist II

2080340-supply-chain-specialist-ii-nike-inc logo
NIKE, Inc.
Entry-Level
TELECOMMUTE
Full Time

LINK

Hybrid
Logistics/Supply Chain
Microsoft Word: / Excel: / Sales Reporting tools:
Old Toronto, Ontario

View Job

Social Media + Influencer

2080335-social-media-influencer-specialist-duer logo
DUER
Senior Level
ON_SITE
Full Time
USD
60000

-

55000

per

Year

LINK

Onsite
Marketing/Business Dev
Social Media Management: / Influencer Marketing: / Content Creation:
Vancouver, British Columbia

View Job

Manager, Sanitation Corporate

2079999-manager-sanitation-corporate-sanitation-give-go-prepared-foods logo
Give & Go Prepared Foods Corp.
Managerial Level
Full Time

LINK

Onsite
Food/Beverage/Restaurant
Old Toronto, Ontario

View Job

Banking Associate

2079812-banking-associate-td-bank logo
TD Bank
Entry-Level
TELECOMMUTE
Part Time
USD
22.50

-

21.25

per

Hour

LINK

Banking/Financial
Juno, Alberta

View Job

Consultor(a) de Belleza

2079709-consultora-de-belleza-promociones-pdv logo
Promociones Pdv
Entry-Level
Part Time

LINK

Onsite
Personal Care

View Job

Prevencionista de Riesgo

2079707-prevencionista-de-riesgo-importante-empresa-del-rubro-de-alimenta logo
Importante empresa del rubro de alimentación
Part Time

LINK

Food/Beverage/Restaurant

Filter by Country

Filter by Country
  • Philippines (494)
  • Mexico (431)
  • Chile (310)
  • Argentina (154)
  • India (140)
  • France (105)
  • United Arab Emirates (100)
  • Bahrain (95)
  • Finland (79)
  • United Kingdom (74)
  • Qatar (68)
  • Malaysia (66)
  • Netherlands (63)
  • Italy (62)
  • Thailand (61)
  • Hong Kong (59)
  • Egypt (57)
  • Greece (53)
  • Colombia (49)
  • Kuwait (45)
  • Spain (42)
  • Turkey (41)
  • New Zealand (39)
  • Switzerland (33)
  • Luxembourg (30)
  • Saudi Arabia (29)
  • Australia (25)
  • Ghana (25)
  • Romania (24)
  • South Africa (23)
  • Canada (22)
  • Oman (18)
  • Poland (12)
  • Singapore (11)
  • Ecuador (10)
  • Brazil (9)
  • United States (9)
  • Hungary (8)
  • Peru (7)
  • Indonesia (6)
  • Ireland (5)
  • Nigeria (5)
  • Vietnam (5)
  • Germany (3)
  • Sweden (3)
  • Belgium (2)
  • Austria (1)
  • Portugal (1)

Filter by City

Filter by City

Search jobs

Search jobs

Filter by type

Filter by type

Filter by industry

Filter by industry

Filter by XP Level

Filter by XP Level

Filter by salary

Filter by salary

Filter by application

Filter by application
  • Apply via Link (3013)

Filter by work location

Filter by work location
  • Hybrid (3)
  • Onsite (25)
  • Remote (136)

Related Searches

<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7179870890317021"
     crossorigin="anonymous"></script>
<!-- Below Filter Ad -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-7179870890317021"
     data-ad-slot="5296998369"
     data-ad-format="auto"
     data-full-width-responsive="true"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
1 - 10 of 3013 jobs found
<script>
jQuery(document).on('keydown', function(e) {
  // Left Arrow Key (key code 37)
  if (e.keyCode === 37) { 
    jQuery(".modal:visible .btn-prev").click(); // Trigger prev button click
  } 
  
  // Right Arrow Key (key code 39)
  if (e.keyCode === 39) {
    jQuery(".modal:visible .btn-next").click(); // Trigger next button click
  }
});
</script>
<script>
jQuery(document).ready(function ($) {
  // Function to handle modal navigation (click and keydown events)
  function handleModalNavigation(e) {
    const isModalOpen = $(".modal:visible").length > 0;
    const currentModal = $(".modal:visible");

    // Pagination Check
    const pagination = $(".pagination-shortcode");
    if (!pagination.length) {
      console.error("Pagination element not found. Please check the selector.");
      return;
    }

    if (isModalOpen) {
      // Remove existing backdrops if any
      $('.modal-backdrop').remove(); 

      // Event delegation for clicks on buttons within the modal
      currentModal.one("click", ".btn-next, .btn-prev", function (e) {
        const isNext = $(this).hasClass("btn-next");
        const direction = isNext ? "next" : "prev";

        // Find the closest wpgb-card element and then the next/prev wpgb-card
        const currentCard = currentModal.closest('.wpgb-card');
        const targetCard = currentCard[direction]('.wpgb-card');
        let targetModal = targetCard.find('.modal');

        if (!targetModal.length && isNext) {
          // If it's the last modal and "Next" is clicked, close the modal
          currentModal.modal('hide');
          return;
        }

        if (!targetModal.length) {
          // If the next/prev modal is not yet loaded (due to lazy loading)
          // Trigger pagination click to load more modals
          pagination.find(`a[aria-label*="${direction}"]`).click();

          // Wait for a short delay (e.g., 500ms) to allow new modals to load
          setTimeout(() => {
            // Find the target modal again after the delay
            targetCard = currentCard[direction]('.wpgb-card');
            targetModal = targetCard.find('.modal');
             
            if (targetModal.length) {
              currentModal.modal('hide');
              targetModal.modal('show');
            } else {
              console.log(`No ${direction} page available in pagination.`);
            }
          }, 500); // Adjust the delay as needed
        } else {
          // If the next/previous modal is already loaded, show it
          currentModal.modal('hide');
          targetModal.modal('show');
        }
      });

      // Keyboard navigation
      if (e.type === "keydown") {
        const key = e.keyCode;
        if (key === 39) { // Right arrow
          currentModal.find(".btn-next").click();
        } else if (key === 37) { // Left arrow
          currentModal.find(".btn-prev").click();
        }
      }
    }
  }
  
  // Function to initialize modal navigation
  function initializeModalNavigation() {
    // Remove existing event handlers and backdrops to prevent duplicates
    $(document).off("click keydown", handleModalNavigation);
    $('.modal-backdrop').remove();

    // Attach the event handler to the document for both click and keydown events
    $(document).on("click keydown", handleModalNavigation);
  }

  // Initial call to set up modal navigation
  initializeModalNavigation(); 

  // Listen for the grid.afterRefresh event from WP Grid Builder
  $(document).on('grid.afterRefresh', function(event, gridId) {
    // Re-initialize modal navigation whenever the grid is refreshed
    initializeModalNavigation();
  });
});
</script>
Back

Search jobs

Search jobs

Filter by type

Filter by type

Filter by industry

Filter by industry

Filter by XP Level

Filter by XP Level

Filter by salary

Filter by salary

Filter by application

Filter by application
  • Apply via Link (3013)

Filter by work location

Filter by work location
  • Hybrid (3)
  • Onsite (25)
  • Remote (136)

Filter by work location

Filter by work location
  • Hybrid (3)
  • Onsite (25)
  • Remote (136)
Show Filter Results