Posts by teste1234 • 31 points
3 posts
-
0
votes1
answer89
viewsQ: as I do in php to get all the specific characters of a string
I need to take all 'SD' characters from inside a string I am using the php strpos function and then making a substr in the position found in the string, but I need to take all because the position…
-
2
votes0
answers31
viewsQ: How can I leave my window in full screen mode using javascript or jquery?
I’m trying to leave the page in fullscreen when I opened it the code below only leaves maximized has to leave full screen <script> window.moveTo(0,0);…
-
1
votes2
answers171
viewsQ: How do I send the src value of an img tag to the value of a text field?
How to send the src value of an img tag to the value of a text field? <script> // Inicia o Clipboard no elemento "button" function teste() { alert("t"); var src = $("#imagem").attr("src");…