Posts by Almir Antonio • 177 points
10 posts
-
1
votes1
answer17
viewsQ: How to identify the closing event in Magnificpopup
I need to identify where the user clicked to close the lightbox Magnificpopup, as I will perform an action on this. Option: -Close x -Escape -background that is the dark part .…
-
0
votes1
answer117
viewsA: How to manipulate where the focus of Iphone Voiceover will appear on the next screen when accessibility is active?
Well, after a lot of trying, I think that’s what we were able to do. The idea is to use the a tabindex="-1" and tag role="status". You have to follow this combination to work. <script>…
-
0
votes3
answers4799
viewsQ: How to remove clasps in a regex?
I’m using a regex to remove some characters, but as one of them is [ brackets] and I’m having problems with regex replace(/[.!'@,><|://\\;&*()_+=]/g, "");. How would it be to remove that…
-
0
votes1
answer117
viewsQ: How to manipulate where the focus of Iphone Voiceover will appear on the next screen when accessibility is active?
I have a problem of Accessibility only in Iphone, some pages of the APP are in Webview made in . aspx and these screens uses a Multiview structure, ie a single page . aspx can have several following…
-
1
votes2
answers985
viewsQ: How to allow a regular expression of letters and numbers to accept cedilla
I need the regular expression to accept the key c cedilla. $('[name="txtEndereco"]').keyup(function () { this.value = this.value.replace(/[^a-zA-Z 0-9]+/g,''); });…
-
0
votes1
answer150
viewsQ: With breaking a Base64 string and assigning to input fields
I have a very large and precise Base64 string breaking there in Multiplus up to 20 thousand characters for no errors when sending it via Hidden field. Each broken piece will be sent in separate…
-
5
votes3
answers2025
viewsQ: How to save a Base64 image to SQL and save it locally as PNG
I need to know if it is possible to save a Base64 image in SQL and then retrieve it and save it locally as PNG or JPEG. I already know how to convert to Base64, but to download in all browsers this…
-
8
votes1
answer10913
viewsA: How to disable browser 'back' button function?
The idea here to block the browser back button is to put a #hash in the browser url preventing the page from coming back and not disabling the button itself. And also present an msg to the user…
-
5
votes1
answer10913
viewsQ: How to disable browser 'back' button function?
How to prevent the user from using the javascript back button? I have a page and I want it to use the page back button.
-
1
votes1
answer1463
viewsQ: How to convert an html page to Image and download IE and Safari?
I need to convert an HTML page into an image and download that image. I got it for Chrome and Firefox, but in IE it doesn’t work at all in any of the versions. In Safari 5 I could not download, when…