Questions tagged as 'jquery'

2
answers

What is the best way, to change only the registration steps and not every page

I have a page where the user chooses to log in (if he has already registered) or does the registration, if he chooses to register by clicking on the cadastre-se button, he would like the element to go left and the first step of the regist...
asked by 14.12.2015 / 13:23
3
answers

Keyup allow to contain only one point between the characters typed in input

Example output: 000.000000 1.000 99.9.99.999 // <- error não pode ter mais de 1 ponto Code: $('input').keyup(function(e){ $(this).val(function() { var val = this.value; return val.replace(/(\.)+/g, function(char, str)...
asked by 03.12.2015 / 00:24
2
answers

Create title attribute in td mounted by javascript

I have a table named gridContudo . In this table, there is this <td> : { width: 100, name: 'OBSERVACAO', index: 'OBSERVACAO', label: 'Observação'}] . What I need is to create a title attribute on this < td> ....
asked by 14.12.2015 / 12:10
3
answers

Preloader while the site loads

I'm doing a hotsite, it's one page, and it's a bit heavy with some images. I wanted to preloader with%, before loading all the content. With: $(window).on('load', function() { alert('carregou'); }) I can tell when the whole site has load...
asked by 31.10.2016 / 15:47
1
answer

Validate maximum size of an attachment

Good afternoon guys, I need to validate the maximum size of an attachment but my code is not working, can you help me? Follow the code below: HTML: @using (Html.BeginForm("AdicionarAnexo", "Turma", FormMethod.Post, new { @...
asked by 20.11.2015 / 18:24
1
answer

dayClick FullCalendar

Can you avoid opening the prompt(modal) insert new event to click on a day in monthView ? I got it to go to the date clicked on agendaWeek but it keeps opening prompt to insert new event. CODE: dayClick: funct...
asked by 25.11.2015 / 12:19
1
answer

Result of JSON on a table

Good afternoon, And I put a search field, and once the search is done, a table with the found users pops up. The part of the query I was able to do, but now I'm not getting popular (actually I have no idea how does, I researched but anyway I...
asked by 12.11.2015 / 22:33
1
answer

What does the crossDomain: false parameter in Ajax mean?

I'm implementing an image upload web app in Ajax and there is the crossDomain:false parameter in a finding example. What is the function of this parameter?     
asked by 19.07.2014 / 01:34
1
answer

How to resize thumbnails generated by Uploadfy? ASP.NET C # MVC 4

Hello, I would like to know how to resize the thumbnails generated by the jQuery Uploadfy plugins. As I show in the print below, it generates the thumbnails according to the actual size of the images, is it a good practice to only resize them in...
asked by 17.03.2014 / 15:21
4
answers

Select2 with AJAX

For some reason my Select2 using AJAX to populate it is not working. When I put a debugger in the code, it does not enter the result: method and also does not return any errors. HTML: <input type="hidden" class="bigdrop select2-of...
asked by 25.02.2014 / 18:52