Questions tagged as 'html'

2
answers

Pass values in vice versa with Javascript or jQuery

Hi, I'm working with Mathquill, what happens is that I have this expression format. sqrt[]{} which can be sqrt[3]{4+5-8} or any number within the brackets and braces, what I did was modify the template of the api of the root...
asked by 14.03.2017 / 22:43
6
answers

JSON object arrives empty to my method

I created the following function to send an object of a service through JSON but when the object arrives it has all the empty variables: var cpDate = new Object(); cpDate = { OllPass: '', NewPass: '', ConfPass: '' }; $(documen...
asked by 09.03.2017 / 13:39
4
answers

Print One-dimensional array in input hidden

I have the variable $style = [1, 2, 1] ; in php and what I want is to send this Array as you see it here, in the value of a input hidden of HTML , to capture it in my controller and use it in other...
asked by 27.07.2016 / 17:06
1
answer

Error first column in a Google charts chart

When I create a timeline with google charts, I cut the first column and it does not look whole, because of the tests that I have done, it only happens if the 'div' of the chart is inside another 'div', instead, if it is directly on the page goes...
asked by 02.08.2016 / 12:31
2
answers

How to align the 2 input radio button to the right

How can I align the radio button inputs using semantic ui: body { background-color: #fefefe !important; font-size: 9px !important;} .navbar-nav > li > a { font-size: 13px; } /* PASOS */ .item-flow{ text-align: center;...
asked by 02.05.2018 / 23:53
1
answer

Problem when ordering queries entered by the user

I am creating a program that captures data on a page using JavaScript. I inserted the QuickSort sorting method for general queries, however, only one query is displayed on the screen even if I entered more than one. This is my code: v...
asked by 16.06.2017 / 16:45
2
answers

Execute .exe from html

Good morning How could I make a windows program run when I clicked on an image? <img src="smiley.png" alt="Smiley face" height="42" width="42"> The images I put in this way to the html, and I want to click on that image to run, for...
asked by 15.11.2017 / 12:55
2
answers

How to block copying and pasting in an input?

I have an input ... <input type="text"> How do I block the commands (control + c and control + v) and right click, copy or paste?     
asked by 05.12.2017 / 20:50
3
answers

How do I choose the value of a select that does not have an identifier but its div?

I'm using the Chrome console to try this because I would use it as a script to save time on a task I do. The idea is this, I have this <div id="seccion1"> <select> <option value=1>Ejemplo 1</option>...
asked by 03.02.2017 / 01:58
4
answers

Any expression that removes% 20 from a javascript string?

Example with javascript var name = "Pedro Canche"; var newname = name.replace("%20", " ");    departure: Pedro Canche but when it is like this: var name = "Pedro Misael Canche Angulo"; var newname = name.replace("%20", " ");    exi...
asked by 05.03.2018 / 18:32