PayPal Is “Safer” Than Credit Cards: Watchdog Report

[vc_row][vc_column][vc_column_text]Despite the advertising industry watchdog saying it was no more secure than other methods, PayPal has been granted the right to refer to its online payment service as “safer” than the alternatives.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_tta_tabs style=”modern” active_section=”1″][vc_tta_section title=”About” tab_id=”aboutf856-8f34c5c9-cf2d”][vc_column_text]According to a complaint made to the Advertising Standards Authority, the marketing claim made by the online payment service that it was “safer” than using credit or debit cards for online shopping was untrue.

According to PayPal, the “safer” claim was based on how it stored users’ payment information so they were exempt from having to give their credit or debit card information to every retailer they made a purchase from.

The complainant, an employee of Transpact.com, a competitor in online payments, claimed that the recent introduction of the “Verified by Visa” program made card payments “less dangerous than it used to be.”

However, PayPal pointed out that not all retailers used the verification system, and that users still had to provide their information.

According to PayPal, “Verified by Visa” primarily provided protection for the seller by lowering the likelihood that a credit or debit card was being used fraudulently and, as a result, lowering the likelihood that the merchant would be held liable for chargeback claims.

| Related Articles:

Fitur

Has your money been exposed by online banks?

The watchdog disagreed, stating that PayPal “offered their customers an equivalent, albeit not identical, level of protection from fraudulent access to or use of their accounts.” PayPal is not as safe as using credit cards for online shopping.

In spite of this finding, the ASA stated that PayPal could continue to assert that it was “safer” because it provided a distinctive alternative by allowing users to retain control over their payment information.

The watchdog said it was reasonable for PayPal to claim that it was “safer” because it provided a recognizable safety feature that was absent from those other secure online payment mechanisms

// Constants for DOM elements const dropdownTriggers = document.querySelectorAll('.dz-menu-item.dropdown'); const dropdownContent = document.querySelector('.dz-dropdown-content'); const dropdownPanels = document.querySelectorAll('.dz-dropdown-panel'); const header = document.querySelector('.dz-header-wrap'); // State to track the currently open menu item element let activeDropdownElement = null; let closeTimer = null; // Timer for delayed closing // Function to close all dropdowns function closeAllDropdowns() { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // Only proceed if the elements exist if (dropdownContent) { dropdownContent.classList.remove('open'); } dropdownPanels.forEach(panel => panel.classList.remove('active')); dropdownTriggers.forEach(item => item.classList.remove('active')); activeDropdownElement = null; } // Function to open a specific dropdown function openDropdown(item, targetPanel) { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // 1. Close all others closeAllDropdowns(); // 2. Open the new one item.classList.add('active'); targetPanel.classList.add('active'); if (dropdownContent) { dropdownContent.classList.add('open'); } activeDropdownElement = item; } // Event listener for each dropdown menu item dropdownTriggers.forEach(item => { item.addEventListener('click', function(e) { e.preventDefault(); const panelName = this.getAttribute('data-panel'); const targetPanel = document.querySelector(`.${panelName}`); if (!targetPanel) return; const isCurrentlyActive = this === activeDropdownElement; if (isCurrentlyActive) { // If the same dropdown is clicked, close it immediately. closeAllDropdowns(); } else { // Open the new dropdown openDropdown(this, targetPanel); } }); }); /* --- MOUSE EVENTS FOR STABILITY FIX --- */ if (header) { // 1. When the mouse leaves the entire header area (menu + dropdown bar), start a timer to close it. header.addEventListener('mouseleave', () => { // Only initiate close if a dropdown is currently active if (activeDropdownElement) { // Set a delay (e.g., 300ms) to allow the user to move the mouse slightly closeTimer = setTimeout(closeAllDropdowns, 300); } }); // 2. If the mouse re-enters the header area before the timer fires, cancel the close. header.addEventListener('mouseenter', () => { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } }); } // 3. Close when clicking anywhere outside the header (as a fallback) document.addEventListener('click', (e) => { // Check if header exists and if the click is outside the header AND a dropdown is open if (header && !header.contains(e.target) && activeDropdownElement) { closeAllDropdowns(); } }); // Initial setup: ensure all are closed on load document.addEventListener('DOMContentLoaded', closeAllDropdowns); window.addEventListener('load', closeAllDropdowns);
Gulir ke Atas