Posts by Luis • 161 points
9 posts
-
2
votes1
answer56
viewsQ: Return a variable value with Zeroclipboard
I’m using this library https://github.com/zeroclipboard to copy text by clicking the user’s Clipboard button. I’m trying to find a way to change its functioning a little, but without success. The…
-
2
votes1
answer787
viewsQ: pass a JQUERY value to window.open() function
How can I recover a value that comes from a request via JQUERY to a database and put that value into a window.open function(); JQUERY $(document).on("click", ".modal", function () { var key =…
-
2
votes1
answer95
viewsQ: Recover a value that comes from a jquey to PHP request
I am here with a difficulty, I am receiving a value that comes from a JQUERY request to be presented in a form input, with the code: HTML <input type="text" id="valor"> With this TAG I can…
-
0
votes2
answers59
viewsQ: Modal window does not work correctly by clicking YES
I’m having some difficulty with the following Jquery code: JQUERY $(document).ready(function(){ $('#modalLogout').click(function(){ $('#yes').click(function(){ function time() {…
-
0
votes1
answer240
viewsQ: jquery code and Chrome problem
I’m having a hard time with the following jquery code. JQUERY $(document).ready(function(){ $('#expand').click(function(){ $(".container-fluid").slideToggle("slow"); }); });…
-
0
votes1
answer570
viewsQ: Run PHP code within a jQuery condition
I have a modal window that opens, shows the option to click another button, that says yes or no. If I click yes, I intend to destroy the PHP session. How can I do this within the jQuery code that…
-
3
votes3
answers1332
viewsA: Run functions without the Jquery click event
Another example, I hope it helps, this uses the remove and add method a Class and the keyup function. CSS: .notempty{ background-color:#0F0; width:20px; height:20px; } .empty{ background-color:#F00;…
-
0
votes1
answer1878
viewsQ: Modal window with PHP database request
I am trying to create a modal window that will bring from a Mysql database only the final part of a URL of an image that is available on the internet (eg parte_final.png ) the problem is that I am…
-
5
votes3
answers909
viewsQ: Dropdown-menu Bootstrap with PHP
I’m trying to send a data to a PHP page with AJAX, but I can’t figure out how to make it work, I’ll explain what I have so far! The dropdown menu has the following code: <div…