Guys,
I am facing a major issue with my html template. On my PC the links are working fine but when i viewed the website on my mobile, the links are not working at all. Here is the
Thanks in advance.
Guys,
I am facing a major issue with my html template. On my PC the links are working fine but when i viewed the website on my mobile, the links are not working at all. Here is the
Thanks in advance.
Summary of the thread: sees links work on desktop but some "read more" buttons fail on an Android S3 while and report iOS is fine and reports the navigation works but some read-more links do not. That pattern most often points to a client-side interaction problem (CSS overlay, non-semantic clickable markup, or a JS event that doesn’t fire on that Android browser) rather than a broken remote URL.
Quick checklist of likely causes to verify (based on the reports from this thread and the earlier suggestions by and ):
Example of a robust, progressive approach (use real anchors + delegated JS only for enhancement):
document.addEventListener('click', function (e) {
var a = e.target.closest && e.target.closest('a.read-more');
if (!a) return;
var href = a.getAttribute('href') || '';
if (href.charAt(0) === '#') {
e.preventDefault();
var target = document.getElementById(href.slice(1));
if (target) target.scrollIntoView({ behavior: 'smooth' });
}
}, false); Practical debugging notes: use remote inspection from desktop Chrome to watch console output and event listeners on the Android device, temporarily disable JavaScript to verify native anchor fallback, test in multiple Android browsers to isolate WebView quirks, and inspect computed styles for overlapping elements or CSS pointer-events. Converting clickable markup to semantic anchors (or adding role/tabindex) and using delegated handlers that work with both touch and click resolves similar cross-device differences.
Jump to Post— JorgeM 958I just tried from an iOS device and the navigation and read more links appear to be working.
Jump to Post— Member #671080The navigation links work fine on my S3 but the read more links seem to do nothing.
Edit. The Finance & Accounting Outsourcing 'read more' link does work, the other read more links don't work on my S3
Jump to Post— annaharris 0I checked this link in my iPhone; it's working fine.
I just tried from an iOS device and the navigation and read more links appear to be working.
hmm...its weird cuz its not working in my android phone. I'm an S3
The navigation links work fine on my S3 but the read more links seem to do nothing.
Edit. The Finance & Accounting Outsourcing 'read more' link does work, the other read more links don't work on my S3
I checked this link in my iPhone; it's working fine.
Any solution to that link problem. I checked it in IE9, the navigation links are ok but the read more buttons are doing nothing.
Are they supposed to be defaulting to a hash tag(#)s
nope...its linked to another id of the same page and onclick it would scroll to that section with the appropriate id..
This is what I get for a link, no page or anchor ... is this static or dynamic content?
its static....instead of an anchor link, i assigned an event to the buttons so onclick it goes to the page i want. could you guys check it out from your end? In your smartphones! Thanks
Did you put the protocol in front of the url in your html code? if not please put it so your link will be ,some older mobile browsers are not "tolerant".
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.