Fazer Owners Club - Unofficial
Browsing forum on mobile - Printable Version

+- Fazer Owners Club - Unofficial (https://foc-u.co.uk/mybb)
+-- Forum: General (https://foc-u.co.uk/mybb/forumdisplay.php?fid=65)
+--- Forum: General (https://foc-u.co.uk/mybb/forumdisplay.php?fid=69)
+--- Thread: Browsing forum on mobile (/showthread.php?tid=63873)



Browsing forum on mobile - m4tth3w - 10-06-13

When I browse this site on my cellphone every time I tap on something it shows a synopsis of the thread in a box then you click the link again to get to the actual thread.

The annoying thing is that the box covers several threads and cannot get to the links to access them.

Is this feature customisable? can I stop it?

Has anyone else noticed this issue?


Re: Browsing forum on mobile - Dead Eye - 11-06-13

Its not likely you can remove it as it is probably jquery driven using the title attribute. You should be able to tap in an empty space on the screen to get rid of the "popup" - the reason it stays showing on a mobile is due to it being a hover effect. If it didn't stay then it would make a LOT of websites completely useless


Re: Browsing forum on mobile - Farjo - 11-06-13

Not sure it's jquery? But it is javascript, to be precise overLIB.
Here's the code:
Code:
<a href="http://foc-u.co.uk/index.php/topic,8252.0.html" onmouseover="return overlib('When I browse this site on my cellphone every time I tap on something it shows a synopsis of the thread in a box then you click the link again to get to the actual thread.&lt;br /&gt;&lt;br /&gt;The annoying thing is that the box covers several threads and cannot get to the links to access them.&lt;br /&gt;&lt;br /&gt;Is this feature customisable? can I stop it?&lt;br /&gt;&lt;br /&gt;Has anyone else noticed this issue?'



Re: Browsing forum on mobile - m4tth3w - 11-06-13

Can I stop it?


Re: Browsing forum on mobile - mickvp - 11-06-13

Have you considered maybe getting tapatalk instead, I think to get rid of if the coding for the entire site would need to be changed (there would need to be a custom CSS or style and a mobile redirect to point mobiles to a different version of the site, or the code would need completely removed for everyone).

I don't think you can do anything to remove it or stop it happening, other than change to tapatalk, which would also solve your problem.


Re: Browsing forum on mobile - simonm - 11-06-13

It's not an issue, it's a feature ;-)

The website is designed to be used on a computer not mobile so on mouse over it works perfectly.  A mobile doesn't have a mouse so chrome/WebKit/Firefox each handle it however they have been developed to.

Get over it, it's just the way it is. ;-)


Re: Browsing forum on mobile - simonm - 11-06-13

(11-06-13, 02:20 AM)Farjo link Wrote: Not sure it's jquery? But it is javascript, to be precise overLIB.
Here's the code:
Code:
<a href="http://foc-u.co.uk/index.php/topic,8252.0.html" onmouseover="return overlib('When I browse this site on my cellphone every time I tap on something it shows a synopsis of the thread in a box then you click the link again to get to the actual thread.&lt;br /&gt;&lt;br /&gt;The annoying thing is that the box covers several threads and cannot get to the links to access them.&lt;br /&gt;&lt;br /&gt;Is this feature customisable? can I stop it?&lt;br /&gt;&lt;br /&gt;Has anyone else noticed this issue?'
I'm pretty darn sure overlib isn't part of jQuery but it's all JavaScript to me...  :rollin.  Am I not supposed to laugh at my own jokes ?


Re: Browsing forum on mobile - Punkstig - 11-06-13

Using iphone and ipad I find tapping the pic of a page with a green arrow to the far right of the post opens the correct page straight away, tapping on the actual title gives me the same problems you have


Re: Browsing forum on mobile - Dead Eye - 11-06-13

(11-06-13, 08:53 AM)simonm link Wrote: [quote author=Farjo link=topic=8252.msg80859#msg80859 date=1370913651]
Not sure it's jquery? But it is javascript, to be precise overLIB.
Here's the code:
Code:
<a href="http://foc-u.co.uk/index.php/topic,8252.0.html" onmouseover="return overlib('When I browse this site on my cellphone every time I tap on something it shows a synopsis of the thread in a box then you click the link again to get to the actual thread.&lt;br /&gt;&lt;br /&gt;The annoying thing is that the box covers several threads and cannot get to the links to access them.&lt;br /&gt;&lt;br /&gt;Is this feature customisable? can I stop it?&lt;br /&gt;&lt;br /&gt;Has anyone else noticed this issue?'
I'm pretty darn sure overlib isn't part of jQuery but it's all JavaScript to me...  :rollin .  Am I not supposed to laugh at my own jokes ?
[/quote]

I stand corrected - it was just a guess and I hadn't actually bothered to look at the source code, that required far too much effort Tongue

overLib is basically just a Javascript library just as jQuery is Smile


Re: Browsing forum on mobile - simonm - 11-06-13

On android when you tap the article the preview will display for a short moment until the page loads.  That is because a mouse click cannot happen without a mouseover event being triggered first.


I would expect that to be the same with all mobile browsers.  There is no was to do a mouse over event on a touchscreen as your finger is on the screen or off it.  If you try to tap and slide it tries to move the page rather than moving focus on the page.


The only otherway is to push mobile users down a plugin route such as [size=78%]http://www.simplemachines.org/community/index.php?topic=339600.0[/size]



Re: Browsing forum on mobile - simonm - 11-06-13

(11-06-13, 10:41 AM)Dead Eye link Wrote: [quote author=simonm link=topic=8252.msg80877#msg80877 date=1370937209]
[quote author=Farjo link=topic=8252.msg80859#msg80859 date=1370913651]
Not sure it's jquery? But it is javascript, to be precise overLIB.
Here's the code:
Code:
<a href="http://foc-u.co.uk/index.php/topic,8252.0.html" onmouseover="return overlib('When I browse this site on my cellphone every time I tap on something it shows a synopsis of the thread in a box then you click the link again to get to the actual thread.&lt;br /&gt;&lt;br /&gt;The annoying thing is that the box covers several threads and cannot get to the links to access them.&lt;br /&gt;&lt;br /&gt;Is this feature customisable? can I stop it?&lt;br /&gt;&lt;br /&gt;Has anyone else noticed this issue?'
I'm pretty darn sure overlib isn't part of jQuery but it's all JavaScript to me...  :rollin .  Am I not supposed to laugh at my own jokes ?
[/quote]

I stand corrected - it was just a guess and I hadn't actually bothered to look at the source code, that required far too much effort Tongue

overLib is basically just a Javascript library just as jQuery is Smile
[/quote]


I agree I'm overly pedantic.  So sue me.  :2guns


Re: Browsing forum on mobile - Dead Eye - 11-06-13

I've used both my mobile and tablet (both android) to browse the forum. Although the "popup" can be annoying it doesn't break the functionality of the site.

At the end of the day, the OP was complaining more than the box was on top of the links for the threads below the last one he viewed. As its a mouse over event, moving focus to a blank area should get rid of it - it does on my devices

(11-06-13, 10:43 AM)simonm link Wrote: [quote author=Dead Eye link=topic=8252.msg80887#msg80887 date=1370943680]
I stand corrected - it was just a guess and I hadn't actually bothered to look at the source code, that required far too much effort Tongue

overLib is basically just a Javascript library just as jQuery is Smile

I agree I'm overly pedantic.  So sue me.  :2guns
[/quote]

Haha, no hard feelings, just defending my intellect Tongue



Re: Browsing forum on mobile - simonm - 11-06-13

(11-06-13, 10:45 AM)Dead Eye link Wrote: I've used both my mobile and tablet (both android) to browse the forum. Although the "popup" can be annoying it doesn't break the functionality of the site.

At the end of the day, the OP was complaining more than the box was on top of the links for the threads below the last one he viewed. As its a mouse over event, moving focus to a blank area should get rid of it - it does on my devices

[quote author=simonm link=topic=8252.msg80890#msg80890 date=1370943802]
[quote author=Dead Eye link=topic=8252.msg80887#msg80887 date=1370943680]
I stand corrected - it was just a guess and I hadn't actually bothered to look at the source code, that required far too much effort Tongue

overLib is basically just a Javascript library just as jQuery is Smile

I agree I'm overly pedantic.  So sue me.  :2guns
[/quote]

Haha, no hard feelings, just defending my intellect Tongue
[/quote]

My galaxy s3 doesn't preview/mouseover, or maybe it's my chubby fingers.


Re: Browsing forum on mobile - m4tth3w - 11-06-13

(11-06-13, 09:46 AM)Punkstig link Wrote: Using iphone and ipad I find tapping the pic of a page with a green arrow to the far right of the post opens the correct page straight away, tapping on the actual title gives me the same problems you have

It is an iPhone and your suggestion works.

Problem solved thanks.


Re: Browsing forum on mobile - red98 - 11-06-13

am i the only one on here who has`nt a clue what these guys are on about  :o


Re: Browsing forum on mobile - dBfazer600 - 11-06-13

(11-06-13, 11:55 AM)red98 link Wrote: am i the only one on here who has`nt a clue what these guys are on about  :o

:rollin :rollin :rollin  Nope, shame on me too  :rollin :rollin :rollin

Daz


Re: Browsing forum on mobile - m4tth3w - 11-06-13

(11-06-13, 01:50 PM)dBfazer600 link Wrote: [quote author=red98 link=topic=8252.msg80899#msg80899 date=1370948114]
am i the only one on here who has`nt a clue what these guys are on about  :o

:rollin :rollin :rollin  Nope, shame on me too  :rollin :rollin :rollin

Daz
[/quote]

If you don't use a mobile phone to browse and only use of then it won't be an issue. Personally I use my iPhone for all my Internet browsing. Turning the computer on and waiting for it to boot up takes too much effort  :lol