Enter your details and get relevant product updates, workshops and support. You can unsubscribe at any time.
Full Name Email* Country Product Interest TTA RAPID Patella Luxation TPLO CBLO 1.5/2.0 LeiLOX Titanium Fracture 2.0-3.5 LeiLOX Fracture Arthroscopy C-LOX Other Submit [tcb-script type=”text/javascript”]window.cfields = {“2″:”country”,”18″:”product_interest”};window._show_thank_you = function(id, message, trackcmp_url, email) { var form = document.getElementById(‘_form_’ + id + ‘_’), thank_you = form.querySelector(‘._form-thank-you’); form.querySelector(‘._form-content’).style.display = ‘none’; thank_you.innerHTML = message; thank_you.style.display = ‘block’; const vgoAlias = typeof visitorGlobalObjectAlias === ‘undefined’ ? ‘vgo’ : visitorGlobalObjectAlias; var visitorObject = window[vgoAlias]; if (email && typeof visitorObject !== ‘undefined’) { visitorObject(‘setEmail’, email); visitorObject(‘update’); } else if (typeof(trackcmp_url) != ‘undefined’ && trackcmp_url) { // Site tracking URL to use after inline form submission. _load_script(trackcmp_url); } if (typeof window._form_callback !== ‘undefined’) window._form_callback(id);};window._show_error = function(id, message, html) { var form = document.getElementById(‘_form_’ + id + ‘_’), err = document.createElement(‘div’), button = form.querySelector(‘button’), old_error = form.querySelector(‘._form_error’); if (old_error) old_error.parentNode.removeChild(old_error); err.innerHTML = message; err.className = ‘_error-inner _form_error _no_arrow’; var wrapper = document.createElement(‘div’); wrapper.className = ‘_form-inner’; wrapper.appendChild(err); button.parentNode.insertBefore(wrapper, button); document.querySelector(‘[id^=”_form”][id$=”_submit”]’).disabled = false; if (html) { var div = document.createElement(‘div’); div.className = ‘_error-html’; div.innerHTML = html; err.appendChild(div); }};window._load_script = function(url, callback) { var head = document.querySelector(‘head’), script = document.createElement(‘script’), r = false; script.type = ‘text/javascript’; script.charset = ‘utf-8’; script.src = url; if (callback) { script.onload = script.onreadystatechange = function() { if (!r && (!this.readyState || this.readyState == ‘complete’)) { r = true; callback(); } }; } head.appendChild(script);};(function() { if (window.location.search.search(“excludeform”) !== -1) return false; var getCookie = function(name) { var match = document.cookie.match(new RegExp(‘(^|; )’ + name + ‘=([^;]+)’)); return match ? match[2] : null; } var setCookie = function(name, value) { var now = new Date(); var time = now.getTime(); var expireTime = time + 1000 * 60 * 60 * 24 * 365; now.setTime(expireTime); document.cookie = name + ‘=’ + value + ‘; expires=’ + now + ‘;path=/’; } var addEvent = function(element, event, func) { if (element.addEventListener) { element.addEventListener(event, func); } else { var oldFunc = element[‘on’ + event]; element[‘on’ + event] = function() { oldFunc.apply(this, arguments); func.apply(this, arguments); }; } } var _removed = false; var form_to_submit = document.getElementById(‘_form_9_’); var allInputs = form_to_submit.querySelectorAll(‘input, select, textarea’), tooltips = [], submitted = false; var getUrlParam = function(name) { var params = new URLSearchParams(window.location.search); return params.get(name) || false; }; for (var i = 0; i < allInputs.length; i++) { var regexStr = “field\[(\d+)\]”; var results = new RegExp(regexStr).exec(allInputs[i].name); if (results != undefined) { allInputs[i].dataset.name = window.cfields[results[1]]; } else { allInputs[i].dataset.name = allInputs[i].name; } var fieldVal = getUrlParam(allInputs[i].dataset.name); if (fieldVal) { if (allInputs[i].dataset.autofill === “false”) { continue; } if (allInputs[i].type == “radio” || allInputs[i].type == “checkbox”) { if (allInputs[i].value == fieldVal) { allInputs[i].checked = true; } } else { allInputs[i].value = fieldVal; } } } var remove_tooltips = function() { for (var i = 0; i < tooltips.length; i++) { tooltips[i].tip.parentNode.removeChild(tooltips[i].tip); } tooltips = []; }; var remove_tooltip = function(elem) { for (var i = 0; i < tooltips.length; i++) { if (tooltips[i].elem === elem) { tooltips[i].tip.parentNode.removeChild(tooltips[i].tip); tooltips.splice(i, 1); return; } } }; var create_tooltip = function(elem, text) { var tooltip = document.createElement(‘div’), arrow = document.createElement(‘div’), inner = document.createElement(‘div’), new_tooltip = {}; if (elem.type != ‘radio’ && elem.type != ‘checkbox’) { tooltip.className = ‘_error’; arrow.className = ‘_error-arrow’; inner.className = ‘_error-inner’; inner.innerHTML = text; tooltip.appendChild(arrow); tooltip.appendChild(inner); elem.parentNode.appendChild(tooltip); } else { tooltip.className = ‘_error-inner _no_arrow’; tooltip.innerHTML = text; elem.parentNode.insertBefore(tooltip, elem); new_tooltip.no_arrow = true; } new_tooltip.tip = tooltip; new_tooltip.elem = elem; tooltips.push(new_tooltip); return new_tooltip; }; var resize_tooltip = function(tooltip) { var rect = tooltip.elem.getBoundingClientRect(); var doc = document.documentElement, scrollPosition = rect.top – ((window.pageYOffset || doc.scrollTop) – (doc.clientTop || 0)); if (scrollPosition < 40) { tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, ”) + ‘ _below’; } else { tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, ”) + ‘ _above’; } }; var resize_tooltips = function() { if (_removed) return; for (var i = 0; i < tooltips.length; i++) { if (!tooltips[i].no_arrow) resize_tooltip(tooltips[i]); } }; var validate_field = function(elem, remove) { var tooltip = null, value = elem.value, no_error = true; remove ? remove_tooltip(elem) : false; if (elem.type != ‘checkbox’) elem.className = elem.className.replace(/ ?_has_error ?/g, ”); if (elem.getAttribute(‘required’) !== null) { if (elem.type == ‘radio’ || (elem.type == ‘checkbox’ && /any/.test(elem.className))) { var elems = form_to_submit.elements[elem.name]; if (!(elems instanceof NodeList || elems instanceof HTMLCollection) || elems.length <= 1) { no_error = elem.checked; } else { no_error = false; for (var i = 0; i < elems.length; i++) { if (elems[i].checked) no_error = true; } } if (!no_error) { tooltip = create_tooltip(elem, “Please select an option.”); } } else if (elem.type ==’checkbox’) { var elems = form_to_submit.elements[elem.name], found = false, err = []; no_error = true; for (var i = 0; i < elems.length; i++) { if (elems[i].getAttribute(‘required’) === null) continue; if (!found && elems[i] !== elem) return true; found = true; elems[i].className = elems[i].className.replace(/ ?_has_error ?/g, ”); if (!elems[i].checked) { no_error = false; elems[i].className = elems[i].className + ‘ _has_error’; err.push(“Checking %s is required”.replace(“%s”, elems[i].value)); } } if (!no_error) { tooltip = create_tooltip(elem, err.join(‘<br/>’)); } } else if (elem.tagName == ‘SELECT’) { var selected = true; if (elem.multiple) { selected = false; for (var i = 0; i < elem.options.length; i++) { if (elem.options[i].selected) { selected = true; break; } } } else { for (var i = 0; i < elem.options.length; i++) { if (elem.options[i].selected && !elem.options[i].value) { selected = false; } } } if (!selected) { elem.className = elem.className + ‘ _has_error’; no_error = false; tooltip = create_tooltip(elem, “Please select an option.”); } } else if (value === undefined || value === null || value === ”) { elem.className = elem.className + ‘ _has_error’; no_error = false; tooltip = create_tooltip(elem, “This field is required.”); } } if (no_error && elem.name == ’email’) { if (!value.match(/^[+_a-z0-9-‘&=]+(.[+_a-z0-9-‘]+)*@[a-z0-9-]+(.[a-z0-9-]+)*(.[a-z]{2,})$/i)) { elem.className = elem.className + ‘ _has_error’; no_error = false; tooltip = create_tooltip(elem, “Enter a valid email address.”); } } if (no_error && /date_field/.test(elem.className)) { if (!value.match(/^dddd-dd-dd$/)) { elem.className = elem.className + ‘ _has_error’; no_error = false; tooltip = create_tooltip(elem, “Enter a valid date.”); } } tooltip ? resize_tooltip(tooltip) : false; return no_error; }; var needs_validate = function(el) { if(el.getAttribute(‘required’) !== null){ return true } if(el.name === ’email’ && el.value !== “”){ return true } return false }; var validate_form = function(e) { var err = form_to_submit.querySelector(‘._form_error’), no_error = true; if (!submitted) { submitted = true; for (var i = 0, len = allInputs.length; i < len; i++) { var input = allInputs[i]; if (needs_validate(input)) { if (input.type == ‘text’ || input.type == ‘number’ || input.type == ‘time’) { addEvent(input, ‘blur’, function() { this.value = this.value.trim(); validate_field(this, true); }); addEvent(input, ‘input’, function() { validate_field(this, true); }); } else if (input.type == ‘radio’ || input.type == ‘checkbox’) { (function(el) { var radios = form_to_submit.elements[el.name]; for (var i = 0; i < radios.length; i++) { addEvent(radios[i], ‘click’, function() { validate_field(el, true); }); } })(input); } else if (input.tagName == ‘SELECT’) { addEvent(input, ‘change’, function() { validate_field(this, true); }); } else if (input.type == ‘textarea’){ addEvent(input, ‘input’, function() { validate_field(this, true); }); } } } } remove_tooltips(); for (var i = 0, len = allInputs.length; i < len; i++) { var elem = allInputs[i]; if (needs_validate(elem)) { if (elem.tagName.toLowerCase() !== “select”) { elem.value = elem.value.trim(); } validate_field(elem) ? true : no_error = false; } } if (!no_error && e) { e.preventDefault(); } resize_tooltips(); return no_error; }; addEvent(window, ‘resize’, resize_tooltips); addEvent(window, ‘scroll’, resize_tooltips); var _form_serialize = function(form){if(!form||form.nodeName!==”FORM”){return }var i,j,q=[];for(i=0;i<form.elements.length;i++){if(form.elements[i].name===””){continue}switch(form.elements[i].nodeName){case”INPUT”:switch(form.elements[i].type){case”text”:case”number”:case”date”:case”time”:case”hidden”:case”password”:case”button”:case”reset”:case”submit”:q.push(form.elements[i].name+”=”+encodeURIComponent(form.elements[i].value));break;case”checkbox”:case”radio”:if(form.elements[i].checked){q.push(form.elements[i].name+”=”+encodeURIComponent(form.elements[i].value))}break;case”file”:break}break;case”TEXTAREA”:q.push(form.elements[i].name+”=”+encodeURIComponent(form.elements[i].value));break;case”SELECT”:switch(form.elements[i].type){case”select-one”:q.push(form.elements[i].name+”=”+encodeURIComponent(form.elements[i].value));break;case”select-multiple”:for(j=0;j<form.elements[i].options.length;j++){if(form.elements[i].options[j].selected){q.push(form.elements[i].name+”=”+encodeURIComponent(form.elements[i].options[j].value))}}break}break;case”BUTTON”:switch(form.elements[i].type){case”reset”:case”submit”:case”button”:q.push(form.elements[i].name+”=”+encodeURIComponent(form.elements[i].value));break}break}}return q.join(“&”)}; var form_submit = function(e) { e.preventDefault(); if (validate_form()) { // use this trick to get the submit button & disable it using plain javascript document.querySelector(‘#_form_9_submit’).disabled = true; var serialized = _form_serialize(document.getElementById(‘_form_9_’)).replace(/%0A/g, ‘\n’); var err = form_to_submit.querySelector(‘._form_error’); err ? err.parentNode.removeChild(err) : false; _load_script(‘https://leibinger-medical.activehosted.com/proc.php?’ + serialized + ‘&jsonp=true’); } return false; }; addEvent(form_to_submit, ‘submit’, form_submit);})();[/tcb-script]VETERINARY Congresses &
TRADE SHOWS
Experience the quality
of Rita Leibinger products
Rita Leibinger actively participates in veterinary congresses, exhibitions, trade shows, conventions, and other relevant veterinary events around the world.
Get to know us and our products in one of these events.

GERMANY
Deutsche Vet
Workshop will be held concurrently
10. June
TTA RAPID® & Rapid Luxation
Seminar room at the "Deutsche Vet" KOELNMESSE, 50679 Cologne, Germany
from 495 EUR (excl. VAT) + 2 Tickets for "Deutsche Vet" 99 EUR (excl. VAT)
German
1 Day, about 8 hours
7 ATF Points
Dry Lab
Jörg Wackes
Dr. med. vet.
Beginners
With more than 100,000 implantations worldwide TTA RAPID® is one of the most attractive TTA techniques on the market. TTA RAPID® can not only fix a cranial cruciate ligament rupture but also a simultaneous patella luxation.
With 54 different cage sizes, TTA RAPID® is the most flexible surgical technique designed to repair a cruciate ligament injury.
The new “Tiny” TTA RAPID® set now makes it possible to treat small dogs and cats with custom 1.5/2.0mm cages and screws. The instrumentation set features a new “tiny” sawguide.
TTA RAPID® implants offer high stability with a less invasive approach. The TTA RAPID® surgery allows for shorter surgery times which provides less of a risk of infection, less anesthesia and less costs.
The open sponge Titanium construct allows for rapid bone growth throughout the cage.
Due to the simplicity of the technique and instruments, a level of comfort can be achieved quickly.
GERMANY
11. Leipziger Tierärztekongress
Workshop will be held concurrently
07. July
Fracture Treatment with LeiLOX 1.5 / 2.5
Congress Center Leipzig, Level 2, Seminar Room 13, Seehausener Allee 1, 04356 Leipzig, Deutschland
495 EUR (excl. VAT)
German
1 Day, about 8 hours
6 ATF Points
Wet Lab
Dr. Andreas Pfeil,
Dr. med. vet.
Beginners
Fracture Treatment in Dogs and Cats with LeiLOX 1.5/2.0 Micro Locking Plate System
The new LeiLOX Locking Systems are manufactured at our location in Mühlheim - Germany, and are specially developed for small animals. They are suitable for a wide range of applications: fractures of long tubular bones, pelvic fractures, fractures close to joints, rod-plate constructs, MiPo, Oral Maxillofacial, corrective Osteotomies and others. Within these systems, a wide variety of locking plates and screws which allow secure fixation are available.
The LeiLOX 1.5/2.0 Micro Locking System was specially developed for very small dogs and cats. The implants are made of the highest quality titanium, the only one of its kind on the market, which offer several advantages. Titanium offers the best biocompatibility, lowest temperature sensitivity, low weight in combination with high strength and rigidity.
PORTUGAL
ECVS Congress
FRANCE
21st ESVOT Congress
Workshop will be held concurrently
21. September
TTA RAPID® & Rapid Luxation
Nice, France
English
1 Day, about 8 hours
7 ATF Points
Dry Lab
Yves Samoy
Dr. med. vet., PhD, Dipl. ECVSMR
Beginners
With more than 100,000 implantations worldwide, TTA RAPID® is one of the most attractive TTA techniques on the market. TTA RAPID® can not only fix a cranial cruciate ligament rupture but also a simultaneous patella luxation.
RAPID LUXATION is relative to TTA RAPID®. It is the elegant solution to fix a patella luxation when there is no simultaneous cruciate ligament rupture. Compared to traditional methods, it brings a lot of advantages simplifications and stability.
This course is offered as a PRE CONGRESS LAB at the 21st ESVOT Congress 2022. Registration is only until 15th of July!
North America
ACVS Surgery Summit
Workshop will be held the day before
12. OCTOBER
TTA RAPID® & Patella Luxation
Crowne Plaza Portland-Downtown Conv Ctr: 1441 Ne 2nd Avenue , Portland, OR 97232, T: +1-503-2332401
English
1 Day, about 8 hours
RACE Credit Approval Pending
Wet Lab
Hugo Schmökel
Prof. Dr. med. vet., PhD, Dipl ECVS, MRCVS
Beginners, basic experience recommended
With more than 100,000 implantations worldwide, TTA RAPID® is one of the most attractive TTA techniques on the market. TTA RAPID® can not only fix a cranial cruciate ligament rupture, but also a simultaneous patella luxation.
TTA RAPID® implants offer high stability with a less invasive approach. The TTA RAPID® technique and instrumentation allow shorter surgery times, which provides less of a risk of infection, less anesthesia and lower costs.
The open sponge Titanium construct allows for rapid bone growth throughout the cage.
Due to the simplicity of the technique and instruments, there is a minimal learning curve.
With 54 different cage sizes, TTA RAPID® is the most flexible surgical technique designed to repair a cruciate ligament injury.
The new “Tiny” TTA RAPID® set now makes it possible to treat small dogs and cats with custom 1.5/2.0mm cages and screws. The instrumentation set features a new “tiny” sawguide.
This course is supported by Rita Leibinger Medical and Dr. Hugo Schmökel.
North America
VMX
Workshops
Here is an overview of our workshop dates.
Get updates on our new workshops!
Always stay up to date with our new continuing education courses, workshop dates, free webinars, and events. Be among the first to hear about the new Rita Leibinger products.
Click below to subscribe to our newsletter.