Questions tagged as 'jquery'

1
answer

change form route laravel 5.4 with jquery

I have the following form in a view: {!! Form::open(['route'=>['user.update',$user_id], 'method' => 'PUT']) !!} {{ Form::close() }} How can I assign the value of 'user_id' dynamically with jquery? This is the HTML that generates th...
asked by 09.11.2017 / 16:20
0
answers

php does not correctly return to ajax on host but if it does to xampp

I have created a form to send messages to Telegram through a bot. I use ajax to send all the data of my form to my php code and that in this the link of the sending of the message is generated. In my ajax I have a success and error, and here the...
asked by 08.11.2017 / 05:24
2
answers

Avoid sending form if I have selected radiobuttons

I'm doing an embed code for a mailchimp form I have 4 options OP 1,2,3 and 4 Each one has 2 radiobuttons YES and NO how do I make the form not be sent if ALL RADIOBUTTONS ARE IN NO <input type="radio" value="Si" name="MMERGE4" id="mce-...
asked by 18.11.2017 / 00:22
0
answers

Copy a value from an input into many other input with the same ID Drag and drop

I need to copy the value of an input in the specific position where it is released. My problem is that all the input have the same id, so the value is only copied in the first input of the form to be dragged. Try listing the id where you drop th...
asked by 12.11.2017 / 23:10
0
answers

How do I slide the photo to the left when I click?

I'm using jQuery and I've tried this: $("#ilussion").click(function(){ $("#ilussion").animate({direction:'left'},500); }); .headerEnd{ padding: 0px; margin: 0px; width: 100%;...
asked by 15.11.2017 / 15:39
0
answers

How to store the output data of an input to be sent to the database?

What I am trying to say is that I have a text input where in that field I put a word and it is shown on the screen, and I would like to be able to use that output data to store it later in the database. To check that everything is fine when crea...
asked by 15.11.2017 / 14:51
0
answers

Load select element values with ajax

I have no idea how to load a select after creating it dynamically within a table with AJAX. This is the AJAX call: function LoadMarcas(id) { $("#MarcasResult tbody tr").remove(); $.get(_urlBase + "Ofertas/GetMarcasUser?id=" +...
asked by 07.11.2017 / 23:33
1
answer

Error: Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3

The following error appeared:    Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3 How can I update my version of jquery to a specific version? since he asks me for a more current version. I wanted t...
asked by 07.11.2017 / 21:27
1
answer

am I trying to send the id of a tag to ajax but when I pick it up in php it returns to me as null which should be the correct way?

<script type="text/javascript"> $(document).ready(function(){ $(".vista_rapida").click(function() { var vista_rapidas=$(this).attr("id"); $.ajax({ url:'aindex.php', method:'post', data:{"...
asked by 06.11.2017 / 20:26
2
answers

How to enable and disable a button with jquery?

Hello, I have a question, I have 2 input and a select and a clear button. What seo is when the 3 fields are filled (input and select) the button is enabled but remains disabled. I would appreciate your help! Thanks in advance. Pdt: I'm workin...
asked by 05.11.2017 / 20:24