Tagged Questions
0
votes
0answers
7 views
jQuery-File-Upload adding input
i'm adding input, example input="title[]" in template and it is works well, but I have a problem with multiple uploading. Script send everything adding fields for each file. File send one, titles send ...
0
votes
1answer
16 views
multiselect.js refresh after change
Just trying to use multiselect.js for multiple type select input's
Here is what select looks like
<select multiple="multiple" id="my-select" name="my-select[]">
<option ...
0
votes
2answers
58 views
How to get value from an input and pass it to a function?
I'm in the process of making little point-and-click game using html5 and jQuery. Even though I'm complete noob at these, up until now I didn't have any significant problems. But recently I've ...
0
votes
0answers
27 views
jQuery get value from input type=number containing dash / minus
I have an <input type="number"> as I want the numeric keyboard on mobile device.
I need to get this value in javascript/jquery, which is normally just $element.val().
This works as long as ...
-2
votes
1answer
58 views
Dynamic create table using input range with jquery [closed]
Anybody can explain me, why when I set my table using input range with 5 columns and 5 rows, and then, when I will change size rows, for example to 3 rows, and next all table will be empty, then I ...
0
votes
2answers
46 views
How to make an input and a slider together
I am experimenting with CSS 3D transforms and I am trying to make sliders to handle the transforms. I came up with the editor of Three.js and I liked the idea of how it handles the position, rotation ...
0
votes
2answers
57 views
jQuery - Cannot retrieve Input Number value [duplicate]
<input id='nb' name="nb" type="number" placeholder="Number"/>
jQuery.val() returns the value if there are only numbers, but empty if there is any letter.
Chrome shows the input number arrows ...
3
votes
6answers
56 views
Jquery Show Input Text Based On Input Value
I facing problem with my jquery, on showing input text based on input value.
Here is the JS fiddle demo :
http://jsfiddle.net/Ltapp/364/
When I try to input @hotmail, the input box will show. But ...
2
votes
1answer
45 views
Element has `checked` attributes but isn't checked?
I am using ThreeDubMedia's drag and drop selection feature to check and uncheck a couple checkboxes. It will check and uncheck them once, but no more than that. What's more, when I look at the ...
-2
votes
1answer
69 views
Javascript FOR loop, form input variables [closed]
I am having an issue with incrementing form names to be pulled into jscript variables. ($('#p'+i+'_status'))
There are 10 of each status. For 1 input it should be $('#p1_status'), so I could simply
...
2
votes
2answers
23 views
Converting text fields to an array and displaying on page with Javascript/Jquery
I am converting a collection of text fields to an array using the following code (assume HTML input fields with values):
var bgimgsarray = $("input[class='image_name_input']").map{function(){return ...
1
vote
2answers
51 views
How to change input border-color, with jQuery, depending on its value?
I have question about jQuery. I have code below which works fine; it changes input border-color depending on its value, which is typed and entered. But if in input's value on page-load it does not ...
0
votes
0answers
24 views
jQuery to make the input text field readonly
I'm using jQuery mobile and I have an input text field that is auto selected when tapped/clicked using the following code:
$(document).ready(function() {
$('.highlight').click(function(){
...
0
votes
1answer
52 views
sum input values and skip one of them jquery
I have form which is making sum of numbers but i want that middle input to be skipped by jquery for summing... please help with this code here i posting... it surely must be inupt tag because it sends ...
0
votes
3answers
52 views
Dynamically add input fields when needed
I'm trying to add extra input fields to my HTML form as they are needed. Here's my code:
My code
JS
$(document).ready(function(e) {
var i = $('.form-inputs input').size() + 1;
...
0
votes
3answers
31 views
jQuery .each() with input elements
//save tablet
jQuery("#savetablet"+jTablets[i].idtablets).on('click', function()
{
alert("alertsepy2...");
...
0
votes
0answers
24 views
Simple JQuery function for checking all inputs for data and highlighting errors
First off, the following function does actually work.
What the function does:
The below JQuery function checks a general form on the page (or you can target a form with an ID) and checks to see if ...
0
votes
4answers
47 views
How to get data from form input as it's typed
I'm not sure this is even possible, but I'm trying to show the input data in a 'preview' section before the form is actually submitted. I've drawn up this Fiddle to help out.
HTML:
<form>
...
0
votes
4answers
48 views
Why do I have a JavaScript parser error with this mask code?
I have a JavaScript parser plug-in in Visual Studios 2012 and it is throwing an error at line 30 of this code, which is the closing curly brace for the $.mask piece from Mr. Bush:
/*
Masked Input ...
0
votes
1answer
57 views
Input in tr>td>input is not processed with jquery serialize
i have found some solution to an problem I face under the last solution provided under this link: Create a HTML table where each TR is a FORM
Anyhow, here are some fragments from my code:
HTML:
...
0
votes
2answers
37 views
Detect if an Input has Changed dynamically
Other javascript is changing the value of an input and I was wondering if there was a way to detect the change.
This question has nothing to do with Keyup or Change. This is not being typed in by ...
2
votes
1answer
49 views
How to detect if a one radio button in a group has been selected with jQuery
I'm 95% there in writing an HTML5 'required' attribute fallback, I'm having a small issue and I've come to the end of the road in my knowledge!
What works:
Detecting 'required' attributes, looping ...
1
vote
0answers
29 views
Optional prefix in masked input
I'm using this Masked Input plugin: http://digitalbush.com/projects/masked-input-plugin/ for my field input.
This plugin allows for optional fields easily enough, such as for example a telephone ...
0
votes
0answers
17 views
Printing an input's value, using a print media stylesheet
I'm using the following jQuery plugin to get a nice, user-friendly print preview and then printing using a print version of the stylesheet.
https://github.com/etimbo/jquery-print-preview-plugin
...
0
votes
3answers
55 views
jQuery 'OR' not working when looping through required input elements
I'm writing a small required HTML5 attribute fallback for various inputs. It's going pretty well so far, but I'm having trouble when checking a radio button is ':checked' and using the 'OR' || ...
1
vote
4answers
60 views
How to find which input field is modified?
I have couple of input field and values in them. This is projected to the user.
The user can modify these values and submit them.
When submitted, I need to check which input field is modified.
I can ...
1
vote
1answer
52 views
How to get a form elements value in the resulting child window (jQuery)
I'm trying to pass the value of an input element from a form on my parent page to its child page. The form element on my opener page, as follows:
<input id="selectedOrgName" type="text" ...
1
vote
2answers
35 views
Can I reference input:text as an #id?
I'm looking to create a "filtering input field" that eliminates tiles from a page that don't match the input.
So far I have this...
HTML -
<input name="filter" type="text" value="Find who ...
2
votes
8answers
64 views
Input field value's length
Is there a way with jQuery to find out the width of text inserted in input field of type text? I need that info because I need to perform some work when certain with is achieved.
Also it would be ...
1
vote
2answers
58 views
JQuery event, text changed but NOT by keyboard - how to catch it?
Scenario: A humble text field, marked as readonly. When clicked a datepicker appears. When you click a date from the datepicker it populates that text field with something like: 10/05/2013.
Problem: ...
0
votes
8answers
69 views
jQuery: change Minutes into hour
I am using jQuery to convert minutes into hour, whenever minutes exceeds more than 59; hour is changed to 1.
I have tried this so far-
<script type="text/javascript">
...
0
votes
2answers
29 views
How to prevent insertion point from changing its position in an input element when pressing arrows?
I have an auto-complete box where user can choose between results with arrow keys while the input element is in focus. when the user uses up and down arrows, the insertion point jumps between the ...
1
vote
3answers
19 views
jQuery remove specific input value before submiting
Here is what I have:
<form method="get" action="" name="advsearch">
<input type="hidden" name="query" value="">
<div class="formelement-01">
<select name="product" ...
-1
votes
0answers
30 views
Stop jQuery from disabling inputs during animation
Hi I have a form and on submit it checks for errors and generates a div saying what the error is. Then the error message fades out when the user clicks on the input, but during the exit animation the ...
0
votes
3answers
59 views
How to validate a form's input value
I am trying to validate a form's input value after clicking a button using jQuery and javascript.
Right now, if I put in a value for the input and click submit the input field and button just ...
1
vote
0answers
68 views
HTML Input has focus, but I can't edit it after using .val()
So here is the problem.
I have facebook page tab app. In it there is a form with text inputs and a button "Facebook login".
When the user clicks the button jQuery fills in the form with user data ...
0
votes
0answers
77 views
Masking input with optional alphabet prefix to a phone number format
I know of this nice jquery plugin: http://digitalbush.com/projects/masked-input-plugin/
for Masked input, and I can use it fine.
So let's say I want a field to be masked by this format: +999 9 999 ...
5
votes
1answer
62 views
Targeting hidden inputs by id using jQuery
For some reason I am unable to retrieve hidden inputs by id using jQuery.
I can do
> $('input')
[<input type="checkbox" name="property-type" id checked>, <input type="checkbox" ...
-2
votes
7answers
107 views
What's the difference between input and :input [duplicate]
I've seen two ways of select input:
$("input")
and
$(":input")
Is there any difference between them?
0
votes
2answers
22 views
jquery onclick setting variable
I set a variable 'api_key' on document load. I want to modify this variable with the text of an input field after clicking a button
var api_key = "";
//my button has an id named "btn-verify", the ...
0
votes
2answers
56 views
If input:radio click checked radio
How do I detect when a radio button is checked?
HTML :
<label><input type="radio" name="test">One</label>
<label><input type="radio" name="test">Two</label>
I ...
0
votes
1answer
31 views
Assigning a file input's file with jQuery
I have an empty file input field on a page that I would like to populate with a file that already exists on the page using jQuery.
For example, I have the following link:
<a href="download.pdf" ...
0
votes
4answers
43 views
jQuery - passing input field to hidden input value
Im trying to use the jQuery .change function to get an input field value:
<input type="text" name="qty2" id="qty2" maxlength="12" title="QtyField" class="input-text qty2">
to apply it to ...
0
votes
0answers
38 views
Jquery - Disabling text field and re enabling fields
Is there a jquery function to limit one submission on a text field once it has been submitted? And once the user deletes the existing information in that field should they change their mind, the ...
0
votes
1answer
44 views
Getting jquery multistep working
I'm trying to make a multistep form with jquery using this:
https://github.com/sheadawson/jquery.multistep
But so far I can't seem to get it working properly because it doesn't hide the other steps, ...
0
votes
2answers
50 views
How to select the previous input independent of the HTML structure?
I searched a lot trying do solve this problem but I just found specific solutions, I wonder if there's a way to select the previous input text independent of the HTML structure.
Don't know if that is ...
-3
votes
2answers
38 views
input text field value on focus [closed]
How can I make this in JQuery?
I need it to show the keyword if there is text in the value input.
http://imageshack.us/a/img849/3262/searchg.jpg
0
votes
1answer
89 views
jquery ui autocomplete input select value
I use jquery autocomplete to search in a xml file.
The autocomplete function works fine. However, when I click on an element item of autocomplete menu result , the value put inside the input search ...
0
votes
1answer
159 views
Trigger file upload with jQuery
Im trying to create a FORM File input button with my custom styles.
Below is the code, but it doesnt work.
<style type="text/css">
.pictures { width:200px; height:70px; overflow:hidden;}
...
1
vote
2answers
66 views
Dynamically check text input
I'd like to create an input form that has an asterisk after the box for each required field. If the user enters a string the asterisk should change to a exclamation mark. Right now the javascript code ...





