Skip to main content
Logo
  • Close
    Toggle search input
Top CPD Collapse Expand
Customer Service Success 2.0 Handling Customer Complaints 2.0 Complaint Handling 3.0
Lost password?

Is this your first time here?

Welcome to the IRPM's Learning Hub,

IRPM members can access the learning hub to begin studying at their own pace toward the IRPM professional courses and qualifications framework. The learning hub also facilitates a free soft-skills CPD library, available to all members. 

If you are not already a member of the IRPM please join online here and visit the IRPM website for more information on gaining an IRPM professional qualification.

The Institute of Residential Property Management
Tel: 020 3319 7575  Email: info@irpm.org.uk

Log in using your account on:


Cookies Policy   Terms and Conditions    Privacy Policy   Contact us

© 2022 The Institute of Residential Property Management (now part of The Property Institute)
Company Limited by Guarantee.
Registered in England and Wales Number: 13753239

Registered Address: 20 Eversley Road, Bexhill-on-Sea, East Sussex, TN40 1HE

Data retention summary
require(['jquery', 'core/ajax'], function($, Ajax) { $(document).ready(function() { var $bar = $('#my-completion-bar'); if (!$bar.length) { return; // no placeholder on this page } var courseid = $bar.data('courseid'); if (!courseid) { $bar.text('Error: no course ID defined.'); return; } // Call the completion API Ajax.call([{ methodname: 'core_completion_get_course_completion_status', args: { courseid: courseid }, }])[0] .done(function(response) { // Build a Bootstrap-style progress bar var percent = response.percentcomplete || 0; var html = '' + '
' + '
' + percent + '% complete' + '
' + '
'; $bar.html(html); }) .fail(function(err) { console.error(err); $bar.text('Could not load completion data.'); }); }); });