WebSite Loading Issue In Chrome - google-chrome

i have created a website.
its admin panel is same like Admin Panel Link
The problem is when i click on each link in
Firefox : it loads all contents smoothly.but in
Chrome : Some camera flash type effect occur on click of Link
So, whats solution of to remove that camera flash type effect in Chrome.
(i don't want to use Loader for Content Load)

Related

How do I completely load a pinned youtube tab in background on chrome startup?

Everytime I startup Chrome with Youtube pinned It doesn't load the youtube page completely until I make the tab active - i.e. I click on it. Interestingly tho it's status according to chrome.tabs.get() is 'complete'.
Here is an example
As you can see, the youtube wasn't loaded until I clicked on it's tab, while stackoverflows website didn't
have to do any loading.
Is there any way I can completely load youtube on chrome startup without explicitly making the tab active i.e. by clicking on it? I tried to execute reload on chrome window startup via chrome.tabs.reload(pinned_tab_id);, but it doesn't help.

Safari MacOS - Same image source is getting loaded twice for different image tags

I have a grid of speakers in an event's website. Each grid item contains a picture and name of the speaker. Whenever a speaker is clicked on, a dialog opens up with more info about them without reloading the page. This dialog features the same picture as before, same src attribute.
In Chrome the dialog opens just fine with the image already loaded, but in Safari the image is loaded again causing an uncomfortable stutter.
The website was built using React and the dialog content is created dynamically.
Is this expected for Safari?
If not, what could be wrong?
Browser: Safari 11.0.2 (12604.4.7.1.4)
System: macOS 10.12.6 (16G1036)
Thank you in advance!

IOS 8 Corporate app download HTML page does not close

I´ve made an HTML page for downloading a corporate iPhone application (via plist distribution).
<div>
<img style="margin-left:auto;margin-right:auto;display:block;margin-top:22%;margin-bottom:0%" src="download.png"/>
</div>
Now on IOS7 when clicking the link the focus of page vanishes and the home screen is shown where you can follow the downloading progress.
On IOS8 when clicking the link the html page does not lose focus. The home screen is not shown and the user cannot follow the download progress.
Any ideas?
Thanks.
It's annoying, but, starting in iOS 8, opening an itms-services link will not send Safari to the background.
You'll have to add some text to your webpage that says something like "When you do tap the Download Button, please tap your Home button to view the progress of the App Installation." You might even want to get some Javascript going to react to the tap on the download button to bring some attention to that message.
This is a good thread that covers both the cases of itms-services links from within apps and from within Safari:
ios 8 openUrl itms-services does not exit current app

AS3 & Facebook Connect : popup not showing

I've got a strange bug when trying to use facebook connect with actionscript3.
I checked everything, couldn't find a way to resolve this.
Look at this :http://tinyurl.com/FBas3test-2
When clicking on "login", the facebook popup appears.
But within this swf (click on the "facebook" logo),
http://tinyurl.com/FBas3test-1
It does not work.
This is almost the same actionscript code; and it IS the same HTML.
You can check some debug informations with the firebug console.
Seems the javascript & HTML code is OK.
When clicking the Facebook logo, the HTML is updated. Guess facebook IS contacted; but then no popup is shown.
Any idea ?
Thanks a lot
The popup is not showing for me at first because the popup blocker is blocking it. In Chrome, I had to click the icon in the upper right to allow popups and then it worked. I don't know exactly how ActionScript facebook sdk works, but if it is using Facebooks javascript sdk, try changing display mode from popup to dialog so that it shows in the same window. Otherwise, you will need to figure out how to get actionscript to show a popup window without the browser popup blocker blocking it.

Chrome scrolls up the page when I click on a link on a large image map

In Google Chrome browser, when I click on a link on a large image map, the page scrolls up as if the PhUp key were pressed.
When I test the page with Firefox and IE8, everything is fine.
Does anyone know anything about this problem with Chrome browser?
example page: http://www.futerox.in/winksquare
Please open the page in Chrome, scroll down and click on any image (not ad) on the image grid. You'll see that the whole page scrolls up.
This looks to me like you aren't preventing the default click event handler. Couldn't determine where you hook up your image map. Try adding an evt.preventDefault() or a return false in your event handler for the image map.