rehasense.com
Open in
urlscan Pro
172.67.193.116
Public Scan
Submitted URL: https://rehasense.co.nz/
Effective URL: https://rehasense.com/
Submission: On December 12 via api from US — Scanned from NZ
Effective URL: https://rehasense.com/
Submission: On December 12 via api from US — Scanned from NZ
Form analysis
3 forms found in the DOMGET https://rehasense.com/catalogsearch/result/
<form class="form minisearch" id="search_mini_form" action="https://rehasense.com/catalogsearch/result/" method="get">
<div class="field search">
<label class="label" for="search" data-role="minisearch-label">
<span>Search</span>
</label>
<div class="control">
<div class="ajax-loader loader">
<img src="https://rehasense.com/static/version1733725626/frontend/Mbl/porto/en_US/images/loader-1.gif" alt="Loading..." style="position: absolute;">
</div>
<input id="search" type="text" name="q" value="" placeholder="Search" class="input-text" maxlength="128" role="combobox" aria-haspopup="false" aria-autocomplete="both" autocomplete="off">
<div class="nested">
<a class="action advanced" href="https://rehasense.com/catalogsearch/advanced/" data-action="advanced-search">
Advanced Search </a>
</div>
<div class="search-category" style="position:absolute; top: 0; right: 35px; width: 130px">
<select id="mpsearch-category">
<option value="0">All Categories</option>
<option value="277">Wheelchairs</option>
<option value="9262">- ACTIVE LINE</option>
<option value="298">- BASE LINE</option>
<option value="9413">- TRANSPORT LINE</option>
<option value="9681">- COMFORT LINE</option>
<option value="312">TRACK WHEEL</option>
<option value="313">- SINGLE ARM</option>
<option value="333">- DOUBLE ARM</option>
<option value="416">ROLLATORS</option>
<option value="417">- CLASSIC LINE</option>
<option value="737">- BASE LINE</option>
<option value="437">OTHERS</option>
<option value="742">- TRANSFER AIDS</option>
<option value="438">- RAMPS</option>
<option value="745">ACCESSORIES</option>
<option value="752">- ROLLATORS</option>
<option value="746">- PAWS</option>
<option value="774">CARE SOLUTIONS</option>
<option value="9604">- LONG TERM CARE BEDS</option>
<option value="775">- SHOWER CHAIRS</option>
<option value="9697">POWER ADD-ONS</option>
<option value="9698">- PAWS</option>
<option value="9737">- Eco Assist</option>
</select>
</div>
<div id="mblelasticsearch-autocomplete" class="mblelasticsearch-autocomplete">
<div class="search-result-not-empty row">
<div class="categories"></div>
<div class="products"></div>
</div>
<div class="no-result">No result</div>
</div>
<script type="text/javascript">
require(['jquery', 'Magento_Catalog/js/price-utils'], function($, priceUtils) {
"use strict";
var baseUrl = 'https://rehasense.com/',
baseImageUrl = 'https://rehasense.com/media/catalog/product/',
priceFormat = {
"pattern": "\u20ac%s",
"precision": 2,
"requiredPrecision": 2,
"decimalSymbol": ".",
"groupSymbol": ",",
"groupLength": 3,
"integerRequired": false
},
searchInput = $('#search'),
timeout = false,
mblElasticsearchAutocomplete = $('.mblelasticsearch-autocomplete');
$('body').unbind('click').bind('click', function() {
mblElasticsearchAutocomplete.removeClass('active');
});
if (!$('#search-overlay').length) $('.field.search').append('<div id="search-overlay"></div>');
$('.field.search label, #search-overlay').unbind('click').bind('click', function() {
if (!$('body').hasClass('search-opened')) {
$('body').addClass('search-opened');
$('html, body').css({
overflow: 'hidden',
height: '100%'
});
window.scrollTo(0, 0)
} else {
$('html, body').css({
overflow: 'auto',
height: 'auto'
});
$('body').removeClass('search-opened')
mblElasticsearchAutocomplete.removeClass('active');
}
})
searchInput.off('keyup', runSearch).on('keyup', runSearch);
function runSearch(event) {
var queryText = $(this).val();
if (this.timeout) clearTimeout(this.timeout);
//Find text
if (queryText.length >= 3) {
//debounce
$('.field.search').addClass('loading');
this.timeout = setTimeout(function() {
$.ajax({
url: "https://rehasense.com/mblsearch/search/" + "?q=" + queryText + '&ajax=1',
dataType: "json",
success: function(searchResults) {
buildAutocomplete(queryText, searchResults.products, searchResults.categories);
$('.field.search').removeClass('loading');
},
error: function() {
showNoResultBlock();
$('.field.search').removeClass('loading');
}
});
}, 500)
} else {
mblElasticsearchAutocomplete.removeClass('active');
}
}
function buildAutocomplete(queryText, searchResult, categoriesResult) {
var productsCount = searchResult['total'],
categoriesHtml, productsHtml;
if (productsCount > 0) {
mblElasticsearchAutocomplete.find('.no-result').removeClass('active');
categoriesHtml = '<div class="product-label">' + "Categories" + ' (' + categoriesResult['total'] + ')</div>';
categoriesHtml += '<div class="breadcrumbs">';
productsHtml = '<div class="product-label">' + "Products" + ' (' + searchResult['total'] + ')</div>';
productsHtml += '<div class="product"><ul id="product" role="listbox">';
$.each(searchResult['items'], function(i, productData) {
productsHtml += '<li>';
productsHtml += '<a class="product-data-info" href="' + correctProductUrl(productData.url) + '">';
productsHtml += '<span class="product-data-image"><img alt="' + productData.value + '" src="' + correctProductUrl(productData.image, true) + '" /></span>';
productsHtml += '<span class="text">';
productsHtml += '<span class="product-data-title"><span>' + productData.value + '</span></span>';
productsHtml += '<span class="product-data">SKU: <span>' + productData.sku + '</span></span>';
if ('availability' in productData) {
productsHtml += '<span class="product-data"><span class="availability ' + stockClass(productData.availability) + '">' + stockLabel(productData.availability) + '</span></span>';
}
if (('price' in productData) && productData.price > 0) {
productsHtml += '<span class="product-data"><span class="price">' + priceUtils.formatPrice(productData.price, priceFormat) + '</span></span>';
}
productsHtml += '</span>';
productsHtml += '</a>';
productsHtml += '</li>';
});
$.each(categoriesResult['items'], function(i, categoryData) {
categoriesHtml += '<ul class="items">';
$.each(categoryData, function(k, category) {
categoriesHtml += '<li class="item"><a href="' + category.url + '">' + category.name + '</a></li>';
})
categoriesHtml += '</ul>';
});
productsHtml += '</div>';
productsHtml += '<div class="product-data-more"><a href="/catalogsearch/result/?q=' + queryText + '">' + "Show all products" + ' > </a></div>'
categoriesHtml += '</div>';
mblElasticsearchAutocomplete.find('.products').html(productsHtml);
mblElasticsearchAutocomplete.find('.categories').html(categoriesHtml);
mblElasticsearchAutocomplete.addClass('active');
} else {
showNoResultBlock();
}
}
function stockLabel(inStock) {
var label = "Out of stock";
if (inStock === 1) {
label = "In Stock"
}
return label;
}
function stockClass(inStock) {
var stockClass = 'unavailable';
if (inStock === 1) {
stockClass = 'available'
}
return stockClass;
}
function showNoResultBlock() {
mblElasticsearchAutocomplete.find('.products').html('');
mblElasticsearchAutocomplete.find('.categories').html('');
mblElasticsearchAutocomplete.find('.no-result').addClass('active');
mblElasticsearchAutocomplete.addClass('active');
}
function correctProductUrl(urlKey, isImage) {
if (urlKey.search('http') !== -1) {
return urlKey;
}
return ((typeof isImage !== 'undefined') ? baseImageUrl : baseUrl) + urlKey;
}
});
</script>
</div>
<div id="search-overlay"></div>
</div>
<div class="actions">
<button type="submit" title="Search" class="action search">
<span>Search</span>
</button>
</div>
</form>
POST https://rehasense.com/rehasense_newsletter/subscriber/newForm/
<form class="form subscribe" novalidate="novalidate" action="https://rehasense.com/rehasense_newsletter/subscriber/newForm/" method="post" id="newsletter-validate-detail">
<div class="footer_newsletter_label" for="footer_newsletter">
<span>E-mail address:</span>
</div>
<div class="field newsletter">
<div class="control">
<input name="email" type="email" id="footer_newsletter" data-validate="{required:true, 'validate-email':true}" placeholder="e-mail">
</div>
</div>
<div class="actions">
<button class="action subscribe primary" title="Send" type="submit">
<span>Send</span>
</button>
</div>
</form>
POST
<form class="form form-login" method="post" data-bind="event: {submit: login }" id="login-form">
<div class="fieldset login" data-bind="attr: {'data-hasrequired': $t('* Required Fields')}" data-hasrequired="* Required Fields">
<div class="field email required">
<label class="label" for="customer-email"><span data-bind="i18n: 'Email Address'">Email Address</span></label>
<div class="control">
<input name="username" id="customer-email" type="email" class="input-text" data-mage-init="{"mage/trim-input":{}}" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true, 'validate-email':true}"
autocomplete="off">
</div>
</div>
<div class="field password required">
<label for="pass" class="label"><span data-bind="i18n: 'Password'">Password</span></label>
<div class="control">
<input name="password" type="password" class="input-text" id="pass" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true}" autocomplete="off">
</div>
</div>
<!-- ko foreach: getRegion('additional-login-form-fields') -->
<!-- ko template: getTemplate() -->
<input name="captcha_form_id" type="hidden" data-bind="value: formId, attr: {'data-scope': dataScope}" value="user_login" data-scope="">
<!-- ko if: (isRequired() && getIsVisible())--><!-- /ko -->
<!-- /ko -->
<!-- /ko -->
<div class="actions-toolbar">
<input name="context" type="hidden" value="checkout">
<div class="primary">
<button type="submit" class="action action-login secondary" name="send" id="send2">
<span data-bind="i18n: 'Sign In'">Sign In</span>
</button>
</div>
<div class="secondary">
<a class="action" data-bind="attr: {href: forgotPasswordUrl}" href="https://rehasense.com/customer/account/forgotpassword/">
<span data-bind="i18n: 'Forgot Your Password?'">Forgot Your Password?</span>
</a>
</div>
</div>
</div>
</form>
Text Content
The store will not work correctly in the case when cookies are disabled. JavaScript seems to be disabled in your browser. For the best experience on our site, be sure to turn on Javascript in your browser. Your company account is blocked and you cannot place orders. If you have questions, please contact your company administrator. We use cookies to make your experience better. To comply with the new e-Privacy directive, we need to ask for your consent to set the cookies. Learn more. Allow Cookies Global * Denmark * Germany * Germany * United Kingdom * USA * Canada * China High quality mobility and care solutions since 2010 * News * Blog * Contact Skip to Content Toggle Nav Search Search Search Advanced Search All Categories Wheelchairs - ACTIVE LINE - BASE LINE - TRANSPORT LINE - COMFORT LINE TRACK WHEEL - SINGLE ARM - DOUBLE ARM ROLLATORS - CLASSIC LINE - BASE LINE OTHERS - TRANSFER AIDS - RAMPS ACCESSORIES - ROLLATORS - PAWS CARE SOLUTIONS - LONG TERM CARE BEDS - SHOWER CHAIRS POWER ADD-ONS - PAWS - Eco Assist No result Search Compare products Global * Denmark * Germany * Germany * United Kingdom * USA * Canada * China Our products * ROLLATORS * CLASSIC LINE * Server * Server HD * Router * Athlon SL * Athlon HD * Explorer * Pixel * Navigator * Navigator Air * Space LX * Space CF * Xeon * BASE LINE * Stylus * Laser * Wheelchairs * ACTIVE LINE * Icon 60 * Icon 30 FAF * TRANSPORT LINE * Icon 35 BX * Icon 35 LX * BASE LINE * Icon 20 * Icon 30 * Icon 40 * COMFORT LINE * Icon 125 * POWER ADD-ONS * PAWS * City * Cruiser * Tourer * Eco Assist * Eco Assist * TRACK WHEEL * SINGLE ARM * Single Arm, Carbon * Single Arm, Aluminium * DOUBLE ARM * Double Arm, Carbon * Double Arm, Aluminium * ACCESSORIES * ROLLATORS * Backrests * Adjustable backrest * Bags * Net luggage bag * Net bag * Transport bags * Clamp * Lamps * Trays * Wheels * Umbrella * Infusion holder * Crutch holder * Seats * One-hand brake * Slow down brake * Bell * PAWS * Handles & Handlebars * Bags * Baterries & Chargers * Footplates & Support legs * Safety & Maintenance * OTHERS * TRANSFER AIDS * Platform * Gateway * RAMPS * Pondus * Broadband * Doorstep * CARE SOLUTIONS * LONG TERM CARE BEDS * Cloud III * SHOWER CHAIRS * Backup DOWNLOAD * Your browser does not support the video tag. Your browser does not support the video tag. High safety standards Premium quality Scandinavian roots OUR PRODUCTS ROLLATORS Thanks to the Rehasense range of products, age is no longer a barrier to independence! The Rehasense product portfolio includes stylish, high-quality rollators which have been designed to enable adults of all ages to enjoy an independent and active lifestyle. In addition to our popular classic SERVER rollators, we also have a lightweight carbon fibre models and additional stylish solutions for people with reduced mobility which are suitable for indoor and outdoor use. With a large selection of colours and accessories available, you can design the rollator to your own personal taste. Looking for a rollator that fits your lifestyle and meets your needs? Rehasense can make it happen! WHEELCHAIRS The ICON wheelchair family is another milestone in Rehasense's product development. It is divided into three categories: BASE wheelchairs (ICON 10, 20, 30 and 40), TRANSPORT wheelchairs (ICON 35) and ACTIVE wheelchairs (ICON 60). The ICON mobility system offers great flexibility with hip widths and side frames that can cover a variety of set ups, not to mention the many choices for leg rests, arm rests and backs. All wheelchairs in the ICON range feature an ergonomic seat and back angle, which provides an excellent sitting position. PAWS Leading engineers, ergonomists and therapists have worked together with wheelchair users to create the most comfortable and user-friendly power add-on on the market: PAWS, short for Power Assisted Wheelchair Systems. PAWS for manual wheelchairs is a great alternative to the car and is ideal for longer trips in the city and the countryside. The three PAWS models CITY, CRUISER and TOURER are each distinguished by their wheel type and have been developed for different types of terrain. TRACK WHEEL Transform your wheelchair into a sporty tricycle and experience a new sense of speed and freedom! The outdoor front wheel TRACK WHEEL is the ideal companion for excursions in the city, in the forest or on the beach: ultra-light, easy to attach and comfortable. TRACK WHEEL comes in two innovative docking systems: Single Arm with one clamping device and Double Arm with a double clamping device. Choose the right variant for your wheelchair model. TRANSFER AIDS AND RAMPS Transfer aids, also known as transfer devices, are a safe and easy solution to help move people with reduced mobility to and from a wheelchair, chair, bed, car, bathtub, or toilet safely. Ramps are the hidden gem of our product portfolio. They enable wheelchair users, as well as people who rely on a rollator or other wheeled mobility solution, to access a building or overcome obstacles with ease. CARE SOLUTIONS The Rehasense range of care solutions has been developed with the aim of making everyday life easier and as safe as possible for people who have reduced mobility due to their age or a medical condition. The care solutions portfolio from Rehasense includes ultra-low care beds that have been designed to reduce the risk of falling out of bed. The range of bathroom care solutions include shower stools and chairs to help people maintain their independence and dignity when using the bathroom. BESTSELLERS ATHLON HD Out of stock Add to Compare XL-Carbon Ultralight Rollator, Large 62, Black, SOFT Wheels CRUISER 16'' Out of stock Add to Compare CRUISER 16'', Automatic Clamp & Lift, Standard Controls ICON 35 LX Out of stock Add to Compare ICON 35Lx, Transport Wheelchair, Alu., SW 50cm, SH45cm, SD 40cm, Ice Blue, 22'' PUR Wh., 7'' front wh., Adjust. Armrest NEWS Global award success As we approach the end of 2024, we are delighted to round the year off with some very exciting news. [...] BLOG The Rehasense ICON 60 – A life changing Wheelchair Helen Bull, the world's first certified lifeguard in a wheelchair, masters her daily life and training thanks to the Rehasense Icon 60. [...] REAL STORIES Henry Manni New found freedom Daniel Gonçalves More independence in everyday life Tomasz Łyko Ready for adventure ABOUT US Rehasense is a global healthcare company led by our CEO Roger Dutton. We offer a comprehensive portfolio of mobility and care solutions that reflect our passion for innovation. We aim to enhance our customers levels of freedom and independence so they can fully enjoy their day to day lives whether it be with family, socialising with friends or at work. Our strength lies in our interdisciplinary team, which pursues a common goal: the development of high-quality products that offer our customers a solution for limited mobility and more independence in everyday life. [...] NEWSLETTER Just news, no spam … promise! E-mail address: Send * Rehasense Sp. z o.o * ul. Sulejowska 45G 97-300 Piotrków Trybunalski Polska * Tel.:+48 880 331 272 * info@rehasense.com * About us * Contact * Find dealers * * MDR Compliance declaration * Quality * Advanced search * Privacy statement * Website Regulations * Social Media Etiquette (c) Rehasense 2024. All rights reserved. Close Checkout as a new customer Creating an account has many benefits: * See order and shipping status * Track order history * Check out faster Create an Account Checkout using your account Email Address Password Sign In Forgot Your Password?