Questions tagged as 'javascript'

3
answers

Add columns of a mvc table

I have a table created in this way <table class="table table-bordered table-striped"> <tr> <th> @Html.DisplayNameFor(model => model.Sale.Date)...
asked by 18.07.2018 / 21:10
2
answers

Disable dates greater than the current one in an input date

I have a form which has a input type="date" I would like the dates after the current date to be disabled How could I do it?     
asked by 19.07.2018 / 15:48
1
answer

for inside another for

I want to do something like this: for(var i = 1; i <= 5; i++){ let ii = i; for(var l = 'a'; l < 'z'; l++){ let ll = l; } } I want the for that is inside the other for to be executed from'a' to'z', 5 t...
asked by 18.07.2018 / 17:47
2
answers

Activate modal window with an Enter

I hope you can help me with this problem I am new and I would like to do this ... I have an input in which I enter information I value it with some conditions and depending on whether it is true that a modal bootstrap window appears. But I want...
asked by 17.07.2018 / 21:01
4
answers

Get GET value from my javascript URL

/index.php/view/corte/8 I need to get that 8 out of the equation but how can I do with Javascript?     
asked by 25.05.2018 / 21:33
2
answers

How to make a code box with style or color-scheme

Hi StackOverFlow colleagues, some time ago I wanted to make this style of code box but I really do not know how to start, or what library I can use to do this. Here I leave an image of what I want to put on my website. I am attentive...
asked by 28.05.2018 / 17:29
1
answer

how to change div for another javascript

I have 3 divs each with an ID id the first div does not contain anything and the other two a name and an image I am dealing with a function that when they pass 10 seconds move the div that is in second place to the first one and that each on...
asked by 25.05.2018 / 15:52
1
answer

How to replace only part of the value of an attribute?

I want to replace ONLY PART of the value of href attributes in a document but I can not find it well how to do it, to see if someone gives me a help. I add that I want to do it only with Javascript, without Jquery or another library. I want t...
asked by 09.09.2018 / 06:13
1
answer

I can not show images with reactjs

in app.js I want to show an image. import React, { Component } from 'react'; import './App.css'; import Image from './components/Image'; import Input from './components/Image'; class App extends Component { render() { return ( &l...
asked by 09.09.2018 / 09:30
1
answer

Know if a mail exists or not in Node.js

I'm doing an API that receives a JSON with various information of people, inside those an email, I need to validate if the email has the correct format, if the domain is correct and if the correct one actually exists in that domain. This is t...
asked by 07.09.2018 / 16:34