Questions tagged as 'javascript'

2
answers

Cache on Web Systems [duplicate]

I have a web system using Ajax which is constantly updated. I need to implement a way to update the user cache of .js and .css files when these files are modified. I tried to solve it in two ways. The first is the use of url with variable t...
asked by 21.02.2017 / 15:49
0
answers

CSS cross-browser by JavaScript

In CSS there are some properties that need a prefix for some browsers, for example: -webkit-transition: all 4s ease; -moz-transition: all 4s ease; -ms-transition: all 4s ease; -o-transition: all 4s ease; transition: all 4s ease; If I want t...
asked by 21.09.2018 / 00:43
1
answer

Carousel Customization

Hello everyone, I'm a beginner in Bootstrap, and I'm developing a carousel in the boostrap, but instead of just showing one image I would like it to show 3, as in the image below. How could I be doing this? Code<divclass="container">...
asked by 20.09.2018 / 21:43
0
answers

Creating non-ionic background services with cordova or java

I have an application that I started to do with ionic. A priori will be compiled only for android. In this application the user will make some registrations, which will be saved locally and every time a service in the background should try to sy...
asked by 20.03.2017 / 03:20
1
answer

How to work with the Javascript console?

My project is generating this error: It'sbecauseofthismethod:components:{VLayout:require('@/layouts/base'),},HowdoIknowwhatistheresultofVLayoutusingconsole.log()?Ihavetriedinmanywaystoimplementconsole.loginthemethodbutisalwaysgeneratingerros...
asked by 29.09.2017 / 21:15
1
answer

Using javascript array inside $ ("tr: contains ('" + array + "')")

I have 3 functions, to do the date range filter in a range of 2. So, I have a start date and an end date, and within those two dates it looks for a table within its three and all dates that will be in that range. The functions used to make...
asked by 05.01.2017 / 14:25
2
answers

get mysql data using javascript and ajax

I'm developing a web app (if interested, follow link) and it was going alright , until I get to the part below: TheNCMfieldisainputtagwithadisabledattribute.TheinformationinsideitcomesfromanautocompletethatIused,usingAJAX,adatabasesearch.ph...
asked by 14.01.2017 / 23:02
1
answer

How to make a column layout responsive with js?

I need to create a responsive masonry layout with pure js. I've tried it in many ways, but most columns are not responsive, and CSS arranges the numbering from top to bottom. Responsivenesswouldbe:Onmobile:haveacolumnhorizontally.Ontablets:h...
asked by 06.01.2017 / 19:15
1
answer

Gallery with category filter

I need to implement the following: category buttons + category gallery I have several categories on my site and a gallery of images for each. On the front, I'll create buttons with the categories and just below a slider . I need to click...
asked by 01.09.2017 / 22:30
1
answer

Ajax request does not work - success does not work

I've done the following function: $("#CategoryList").change(function () { $("#SubCategoryDropDown").empty(); $.ajax({ dataType: "json", url: '@Url.Action("GetSubCategory", "ProjectSubCategories")', type: 'POST', data: { id: $(...
asked by 19.08.2017 / 23:07