Posts by Jean Carlos Ferreira Lemes • 163 points
11 posts
-
0
votes0
answers38
viewsQ: Exception sqlite in windows 8
I’m getting this Exception when trying to open a window inside a program I made, the program was done in visual studio 2017, with sqlite 3, it opens normal only from this problem when trying to open…
-
0
votes0
answers143
viewsQ: How to update textbox from another WPF window
I have 2 windows wpf (C#) To register B search engine provider Inside the window A to a textbox and a button that opens the window B, Inside the window B has a textbox and a button. How do I move to…
-
1
votes0
answers45
viewsQ: Create "iframe" similar to facebook
I tried to search I don’t even know where to start, I want to create a type of iframe to load the content of another site, but I don’t want it to be iframe, I want the content of this other site to…
javascriptasked Jean Carlos Ferreira Lemes 163 -
1
votes1
answer98
viewsQ: update Hidden value before Submit
I’m trying to update two hiddens with a Base64 code coming from the plugin html2canvas, but it does not update and on the other page where the form is received picked up by $_POST the two fields…
-
0
votes1
answer135
viewsQ: How to get toDataURL to save in a sessionStorage?
I’m using a library I picked up here at this link: https://github.com/fengyuanchen/cropper Only I already spent 2 days testing and looking for how to get the image cut with toDataURL to catch the…
-
0
votes1
answer40
viewsQ: Where to place canvas Rotate in this code
I searched a lot, but unfortunately I did not find where the canvas Rotate function I could add in this code. In html I have an input type ranger that I use to rotate the image.. The input type…
-
1
votes2
answers27
viewsA: Do not run event on just one page
On the page I don’t want you to show the div.. I put on an event $("#escondido").css("visibility","hidden"); So it "Executes" no more is visible.…
-
2
votes2
answers27
viewsQ: Do not run event on just one page
I have the following code on every page $( ":submit" ).click(function() { $("#escondido").css("display","block"); }); This code is in a Blabla.js file, and is included with php at the top of all…
-
5
votes1
answer69
viewsQ: Pass Base64 code to another page
I have tried to pass as get only that the bar code and the error, I just need to pass the code Base64 from one page to another page. Obs** This code Base64 is being generated on page A with Crop.…
-
2
votes2
answers4674
viewsA: Pick top, left element position according to parent element
Solved =D I took the left and top of the parent element and subtract from the child element. <!DOCTYPE html> <html> <head> <link…
-
3
votes2
answers4674
viewsQ: Pick top, left element position according to parent element
I’m using jquery offset to pick the position of an element and I’m using draggable to move this element. The offset element is inside a div and I would like to take its position by the parent…