Questions tagged as 'jquery'

2
answers

Modify attributes of HTML elements dynamically created with JavaScript

On my website I make a request to the server PHP with AJAX , and I bring some links already created in PHP . All right up to here, but the problem is that I want to change these links to href with JavaScipt , but...
asked by 09.08.2018 / 00:37
2
answers

Get the value of an input button

I have dynamically created buttons, and I wish that when you click on them you get your value to be able to interact with it. @for (int i = 0; i < pagesMax; i++) { <input type="button" value=@(i+1) class="bottom" id="id" />...
asked by 25.06.2018 / 21:30
1
answer

Confirm Dialog when you are closing a browser window

Hello, my question is how can I make a dialogue message when a user wants to close the page to confirm if they want to leave or want to stay on the site, I tried in many ways that I saw by other posts and none It works for me, thank you very muc...
asked by 08.06.2018 / 13:17
1
answer

Vertical scrolling with jQuery

I have 2 problems, what I'm doing is not working, if I put overflow = hidden and it works if I move from one to two, but two to one does not work, it gets caught. Let's see if you can lend me a hand $(document).ready(function() {...
asked by 15.06.2018 / 13:17
0
answers

Error making a query with the Ajax function help

I have a problem with a function, what I'm doing is a search engine and, inside, there's another div that when I click on it, it's supposed to give me the user's data but not do anything but if I take it out of the div of the search engine if...
asked by 07.06.2018 / 22:47
1
answer

HTML form to search and edit data in Google Sheets

I have a form in html to edit or search data in a sheet, everything works but after clicking the edit button or when I try to do two searches in a row the page disappears and I have to manually reload. I would like to know how to do that after c...
asked by 06.06.2018 / 18:18
1
answer

Copy row from a table with jquery

I'm trying to copy a row of a table with jquery, this is the table: <table id="myTable" class="table table-bordered"> <thead> <tr> <td>Empleado</td> <td>Fecha salida</t...
asked by 06.06.2018 / 23:22
0
answers

Read JQuery memory files

I have an application that writes to memory a result in the following way: using (MemoryMappedFile mmf = MemoryMappedFile.CreateOrOpen(sMemfile, 1028)) { using (MemoryMappedViewStream stream = mmf.CreateViewStream()) { Binar...
asked by 01.06.2018 / 18:16
3
answers

Avoid submitting in a form

is that I have a form, and I need to avoid going through the submit if it does not meet certain conditions, this is my js. $(document).on('click', '.validar', function (event) { var parametros = { "User": {...
asked by 20.06.2018 / 18:56
0
answers

SSRS How to print all the pages of the reportviewer without going to the next one?

I have a report viewer in a webform.aspx and to avoid showing the preview when printing, add a button to which I added this script: <script type="text/javascript"> function Print() { var report = document.getElementById("<%=...
asked by 15.05.2018 / 19:44