Questions tagged as 'cross-browser'

1
answer

Scroll with animate does not work

The code below in jQuery runs perfectly fine in Google Chrome and Opera. The problem is that it does not work in IE and Firefox, before it worked. // Jquery document... $(document).ready(function() { $('a[href^="#"]').click(function (event...
asked by 21.04.2015 / 02:35
0
answers

CSS cross-browser by JavaScript

In CSS there are some properties that need a prefix for some browsers, for example: -webkit-transition: all 4s ease; -moz-transition: all 4s ease; -ms-transition: all 4s ease; -o-transition: all 4s ease; transition: all 4s ease; If I want t...
asked by 21.09.2018 / 00:43
1
answer

VRaptor - File upload in IE 8/9 does not work

I'm trying to upload files and it's not working in IE8. NOTE: It works in Chrome and Firefox perfectly. I've been researching and seen that IE 8/9 does not support FormData as enctype . Ex: <form id="form" method="post"...
asked by 29.09.2016 / 20:49
1
answer

Which characters can I not use for cookie names?

I am developing a new authentication system, to reduce complexity and increase security. And I'm developing a system where some authentication cookies will have randomly generated names for each session. My question is: Which character set sh...
asked by 28.08.2014 / 16:19
2
answers

CSS background-blend-mode in IE (Edge)

I'm making a website, and to avoid hovers with other images, I used blend-mode in CSS. But according to the Can I Use? IE 11 and new Edge browsers do not support. Here comes my question, in cases like this, what could I do? Try some alterna...
asked by 27.08.2015 / 01:16
1
answer

Change maximum video size supported by server

I was testing a video on my page, but I came across a problem .... The line of my code is basically just this: <video id="video" src="arquivo.mp4" controls="true" /> Video resolution is the size of each frame set to 1920w x 1080...
asked by 21.10.2015 / 05:01
4
answers

Cross-browser way to copy text to Clipboard

I'm looking for ways to copy a text to clipboard via JavaScript, which works in most modern browsers, but there's too much information and it seems outdated. I know there is the Clipboard API and that it is partially supported by all (except...
asked by 25.05.2014 / 19:41
2
answers

Blur effect in different browsers

I'm trying to put a Blur Effect in some images on a page. At first I saw that Blur does not work (to my knowledge) in all modern browsers. But as "Mission given is mission accomplished" I have / have to figure out a way out of this. I though...
asked by 27.05.2014 / 22:54
2
answers

Check which page was previously accessed and if it shows something

I need to make a verification that if the source is not coming from facebook.com you will not be able to show a certain code. Only people coming from facebook.com will be able to see the particular code, if it comes from another link,...
asked by 06.02.2015 / 19:48
1
answer

Getting JSON user data by jquery

I have a json that I'm running through json-server and it's at: link Within it, it has a scope of "users", which I would like to take. I have the following script I put together, it follows: $.getJSON(urlParam, function (data) {...
asked by 11.05.2018 / 19:38