Questions tagged as 'jquery'

1
answer

Macros in coordinates relative to textarea

I need to insert some macros into a text area, these macros can be inserted anywhere in the field, currently I only use a append that just puts the macro in the beginning. I'm thinking of getting the coordinates of the click with cl...
asked by 04.11.2015 / 12:30
1
answer

how to insert into the database a variable that brings an array?

I have a page that has a textarea and in this textarea the user will put a list of records and in that records I separate the strings with the function explode this is my html index.php code Active MTMs     #Login{         text-align:...
asked by 18.04.2016 / 00:07
1
answer

How do I prevent the jQuery close function from destroying my message container?

When I click the close icon of the error message, the Bootstrap javascript function simply destroys the #msg container that receives the error messages, preventing the next time an error occurs the container does not appear with the messa...
asked by 08.11.2015 / 04:07
1
answer

Jquery does not validate password Incorrect

I have the following jQuery $(document).ready(function(){ $('#email').focus(); $("#formLogin").validate({ rules :{ email: { required: true, email: true}, senha: { required: true} },...
asked by 06.11.2015 / 17:01
1
answer

Hide element after it has been loaded onto the page

I have on my page the following google script: <body> <!-- Google Tag Manager --> <noscript> <iframe src="//www.googletagmanager.com/ns.html?id=GTM-abcdef" height="0" width="0" style="display:none;visibility:hi...
asked by 09.11.2015 / 15:55
1
answer

Dynamically triggering combos for DOM creation via jQuery

I have a sequence of 3 dropdowns that modify the DOM. One depends on the other. If I select the first dropdown it modifies the DOM and the other dropdowns. The second dropdown modifies the third one in the same way. The question is how to trigge...
asked by 22.10.2015 / 03:34
1
answer

Configuring an option value in a jQuery Multiselect dropdown

I'm using the Bootstrap Multiselect library: $("select#final option[value='" + data[0].final + "']").prop('selected', true); $('select#final').multiselect("refresh"); As the code above I want to select a particular option of sel...
asked by 22.10.2015 / 05:51
1
answer

I need to modify the css of a radio button md-radio-button via jQuery

Colleagues, I'm trying to change the css of a md-radio-button via jQuery but I'm not getting it. <md-radio-button id="radio_letter" style="margin: 2px!important" ng-click="changeCorrectAlternative(command.key, alternati...
asked by 16.12.2015 / 20:17
3
answers

Align 4 divs always horizontal, with size proportional to screen size

I need to make 4 thumbnails accompany the width of the screen. Example: DIV1 DIV2 DIV3 DIV4 They are one size X, horizontally in a row, taking up the full width of the screen. I need to resize the screen, it still persists in 4 queued d...
asked by 15.12.2015 / 19:18
1
answer

Move bootstrap window

I'm using the following code to move bootstrap windows: $('#divform').modal({ keyboard: false, show: true }); //Jquery draggable $('#divform').draggable({ handle: ".modal-header" }); That is, I have to make use of explicit jque...
asked by 17.02.2016 / 13:27