How to resolve the issue of items showing Out of Stock in pdpmatrix table in IOS devices

The issue is causing by some reasons, one of the reason is that the name of the location on the iOS device was obtained as the first word only. So we have to update the condition to work on all devices. By using the above code we are getting data from the configuration. Here .includes()… Continue reading How to resolve the issue of items showing Out of Stock in pdpmatrix table in IOS devices

How to detect whether a device is iOS without using Regular Expression in JavaScript

We can detect whether the device is iOS or not without using RegExp with the help of JavaScript. There are two approaches first is Use navigator.platform property to check for the particular keywords which belongs to iOS devices using index of( ) and second is using pop() to take out one by one Approach 1: Use navigator.platform… Continue reading How to detect whether a device is iOS without using Regular Expression in JavaScript

How to adjust the text sizes for iOS devices

Description: The text format in the iOS devices are little different from the normal devices which can be customized with this methods. SOLUTION:Adjusting the text size is important so that the text is legible when the user double-taps. If the user double-taps an HTML block element—such as a <div> element—then Safari on iOS scales the viewport to… Continue reading How to adjust the text sizes for iOS devices

Adding Validation Message to Canvas Input Fields (Issues in iOS Devices)

While adding a validation message to a canvas Input field in html forms for adding Signature, consider the below points. When we convert the value of blank canvas to a string value for the comparison between empty and non-empty canvas fields, the value for blank canvas will be different for iOS devices including iPhone, iPad,… Continue reading Adding Validation Message to Canvas Input Fields (Issues in iOS Devices)