Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
4answers
4k views

Inline Disabling of Firefox Spellcheck?

I researched this a while ago and can't remember how to do it. I want to be able to prevent Firefox from running it's spell-checking functionality on certain input fields from within the page. I know ...
7
votes
3answers
4k views

Programmatically selecting partial text in an input field

How can I programmatically select a specific range of text in an HTML input field? (I don't want to select the entire field, just a subset) Also, how can I determine the currently selected range in ...
6
votes
4answers
778 views

What characters are allowed in the HTML Name attribute?

I have a PHP script that will generate <input>s dynamically, so I was wondering if I needed to filter any characters in the name attribute. I know that the name has to start with a letter, but ...
4
votes
1answer
573 views

ASP.NET MVC HTML helper methods for new HTML5 input types

HTML5 appears to support a new range of input fields for things such as: Numbers Email addresses Colors URLs Numeric range (via a slider) Dates Search boxes Has anyone implemented HtmlHelper ...
4
votes
4answers
2k views

totally lost — textarea in IE7 disappears when i mouse over

i'm just going to toss this question up in a rough form now, while i'm thinking of it, and come back to flesh out the details. it's terribly vexing. maybe someone here will know wtf is going on. i ...
3
votes
5answers
255 views

Getting an input element's value in jQuery

How can i get the input element value in jquery
3
votes
3answers
946 views

One click upload button

I am looking to create a button which when clicked opens a dialog window where they select an image to upload and then once they select it and press ok within the dialog window the upload begins ...
2
votes
1answer
457 views

How-To Upload Photos to facebook(graph api) with html file selector(input type=“file”)

I have a html file which select images from user's computer.code is given bellow <html> <body> <form enctype="multipart/form-data" ...
1
vote
3answers
63 views

Input box time in html ie

I want to get a 'time' input box (that sows the arrows to increase/decrease time). The following code works in chrome/mozilla but it doesnt in internet explorer : <label ...
1
vote
2answers
263 views

Submitting data from an input of type “image” via Ajax rather than form submit

Basically, I want to use an image input, but I don't want to have to submit form to get the result, I want to get the X and Y coordinates from the click on the image input, then submit them via ajax. ...
1
vote
4answers
313 views

how to capture key repeats with javascript

i have an asp.net form and an asp:textbox. i have a problem when the user presses and HOLDS a key down. the user selects the text box and then presses and holds '9' until the text box fills with 9s. ...
1
vote
1answer
970 views

accept attribute in input file is not working

hi i came across a browse file dialog control tag in htnl .and the tag was <input id="myfile" name="myfile" type="file" accept="application/pdf"/> but the accept attribute doesnt seems to ...
1
vote
1answer
185 views

How to prevent user from deleting text in a text box

Ok so I am new here and was wondering if someone a little more advance then me can help me out. I have text box on my website with code for user(s) to copy the code that's in the text box and paste ...
1
vote
7answers
5k views

Javascript login form doesn't submit when user hits Enter

I'm working on a simple javascript login for a site, and have come up with this: <form id="loginwindow"> <strong>Login to view!</strong> <p><strong>User ...
0
votes
2answers
41 views

How to know ids for html fields on Rails 3?

Stage: I am using nested models, supose we have two models: person and car. And here you have new.html.erb page: <%= form_for(@person do |f| %> ... <%= f.fields_for :cars do |car| %> ...
0
votes
1answer
80 views

Do I use Javascript for HTML <select> needs to affect two variables?

I'm currently working on a paypal checkout form. The form allows the user to specify a few options and when they submit the form, it submits the order to paypal for processing. The form has a ...
0
votes
1answer
48 views

Joomla Extra User Field

I'm working with Joomla User Form. I need to create some extra fields. I googled, and got this tutorial I followed but that wasn't enough for me because I have to handle with checkbox and radio ...
0
votes
1answer
22 views

can change the width of a textfield in webapp

I am making an app for iOS, amdroid, BB, and also any other devices. I ma working with webapp-net. In my app I have a fieldset containing different textfields. so this is what i have: ...
0
votes
1answer
84 views

Removing highlighting of text in text box after switching tabs in jquery-ui-tabs

I am experiencing a weird issue with the jquery-ui tab object. If I highlight the text of an html input tag (type="text") that is on a tab, switch tabs, then come back to the original tab, this text ...
0
votes
1answer
225 views

How to set the value of a text input with MooTools

I have just begun playing with MooTools, and I don't understand why the following happens: var input = new Element('input'); input.set('type','text'); input.set('value','this is the value'); ...
0
votes
3answers
37 views

How to specify list of files in HTML form?

When you use a <input type="file"> in your application you get the file select dialog box with all files as default. Is there a way to specify file types for that? Is it possible for example to ...
0
votes
1answer
173 views

asp.NET HtmlInputText inside a disabled panel loses its value on postback

I have a asp.net page content as below. There is an HtmlInputText control inside a Panel which has Enabled="false". I set the Value property of HtmlInputText control in btnSet_Click and then set ...
0
votes
2answers
522 views

HTML5 Email Input Pattern Attribute

I’m trying to make a html5 form that contains one email input, one check box input, and one submit input. I'm trying to use the pattern attribute for the email input but I don't know what to plaice in ...
0
votes
2answers
100 views

Making sure an input is of a certain type with jQuery.each()

I'm trying to loop over all inputs in my form that are either "text" or "file". Here's my form markup: <form action="" method="post" id="upload_form"> <p> <label ...
0
votes
4answers
487 views

Select inputs with number type through jQuery

How can I select all inputs with number type in jQuery? The following code doesn't work: $(':input[type="number"]').click(function () { alert('hello'); }); Thanks.
0
votes
1answer
379 views

How to retrieve values of dynamically created controls in code behind?

I intend to use Javascript to dynamically create a group of html elements (input boxes, select list, radio button, etc.) each time the user clicks "Add More" button. I have found the Javascript that ...
0
votes
1answer
267 views

How to dynamically create the same input fields upon user request (clicking Add More button)?

On the Job Positions page, I would like to have 3 groups of input fields which are static so user can enter Job Name, Job Description, etc. respectively. I'm not sure what the best approach is but ...
0
votes
2answers
280 views

How to let user upload multiple images without pre-defining the number of HTML upload input box?

I'm looking for a way to have user upload as many images as they want (perhaps via drag and drop) or dynamically adding more upload box. I thought statically fixing (say 6) HTML upload input box is ...
0
votes
8answers
2k views

How do I cancel form submission in submit button onclick event?

I'm working on an ASP.net web application. I have a form with a submit button. The code for the submit button looks like <input type='submit' value='submit request' onclick='btnClick();'>. I ...
0
votes
2answers
553 views

Getting full file path from code behind from file HTML input

I used file HTML input instead of FileUpload Web Control. Don't ask why but I just have to! HTML: <input type="file" id="image1" class="listUploadAdd" name="ImageAdd1" /> Code behind: Dim ...
0
votes
3answers
362 views

Writing a string property of an object with <html:text />

I've got an object in my form that contains various string properties. When I want to print it in my JSP form I could do it with <c:out value="${form.company.address}" /> which works ...
0
votes
2answers
184 views

Detect when a user chooses a file using a file input

How can I detect when a user has chosen which file to upload using a html file input. That way I can submit the form automatically.
0
votes
2answers
674 views

does php mysql_fetch_array works with html input box?

this is my entire PHP code: <?php if(empty($_POST['selid'])) {echo "no value selected"; } else { $con = mysql_connect("localhost","root",""); ...
0
votes
3answers
315 views

JQuery Dialog not displaying imput type text

I have been trying to add a standard html :<imput type="text" value=""> into a JQuery dialog box, but it does not show up. I have tried with a selector and it was working. I don't understand ...
0
votes
3answers
10k views

Javascript Calculate the sum off multiple HTML-input values

im looking for some Javascript code to calculate the sum off multiple HTML-input values. The amount off inputs are dynamic so i'm looking for something like "for each" input. the format off the ...