This code:
<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td bgcolor=red>
<input type='text' />
</td>
</tr>
</table>
Gives this output in Safari and all other browsers:
The question is how to remove the indent that is highlighted with background color.
Problem occurs in Safari only, CSS margin...
i am trying to validate my form fields calling the input text ids, but jquery is not validating it. here is what i have:
email2: {// compound rule
required: true,
email: true
},
if i change name="email2" it works fine, but i want name="email[]" as i have an array of ema...
I want to create a swf or air app that takes an input and displays a graphic representation of it.
The graphic side is fine for the moment, but its always using an mp3 for example
var sound:Sound = new Sound (new URLRequest("myMP3.mp3"));
- i want it to be able to take a 'live' audio feed. How would I do that and is there a better w...
Hi everyone,
I'm struggling with a problem on a web-based application I'm working on where I want to sort on all columns of a page. Every column BUT the one that contains INPUT tags (it is a date column that allows AJAX-style edits and has a little calendar pop-up that helps you choose a date.
Is there a way to work around this prob...
I have used input type image to display my custom style buttons, but for some reason IE8 shows border even when I set in CSS border to none. In other browsers it is not showing border at all.
input[type=image] {
margin: 0px;
padding: 0px;
border: none;
border-width: 0px;
border-style: none;
background-color: non...
When using grammars written in ANTLR, the parser correctly recognizes data from an input stream, but if I have some rubbish text at the end of the input (which is not supposed to be parsed by the grammar) the parser does not complain.
I guess this behavior is all right (I mean the parser did its job and parsed whatever I said it should ...
I have a series of text boxes on my form, and my client wants me to filter out characters that aren't allowed, for example in the name field you cannot have symbols or numbers.
Now, he wants it so when you try and put in a special character it simply will not get entered into the text box. I know the logistics to this, but I'm not sure ...
I've got a bit of a usability issue that I'd value some input on.
The initial page to my site contains two groups of controls, one for users to login, the other for new users to activate.
The issue is with the latter. When users signup for the service, they recieve an activation code that's in the form XXXX-XXXX-XXXX-XXXX. At the momen...
I'm collecting information in a standard HTML form. I have, for example, <input type="text" name="UserName" id="name"/>. When the form is submitted, I want to add a line break to the value entered. So if the user entered "foo," the form would submit the value "foo\n."
Here's the jQuery function I'm using:
$("#formID").submit(function (...
Hi all,
I am facing a curious issue. I have bash script I am running from powershell in windows that does a for loop. Every once in a while, one of the loop iteration hangs until I hit enter on the keyboard. This doesn't happen all the time, in fact, it happens pretty rarely. But it still does. The interesting thing is that my loop...
Hi! I am trying to make a google custom search (I just need some sort of search engine on my site) and I need to make it so that I can use my own search box (input field). I need it to be an exact size. I also need to be able to make my own button to search. I am going to need to be able to change the size and background of the search bu...
I have a Java program that accepts input text typed in from standard input
is there a way to find if the user has typed in the text or redirected input from a file?
$ java prog
this text is typed in from the keyboard
$ java prog < file.txt
Thanks!
...
i have 3 form input text for phone number.
currently i am validating each input text for a digit.
i have an input message for each individual input text.
instead of doing this:
phone1: {
required: true,
maxlength: 3,
digits: true
},
phone2: {
required: true,
maxlength: 3,
digits: true
...
I have a simple textbox in a form and I want to safely store special characters in the database after POST or GET and I use the code below.
$text=mysql_real_escape_string(htmlspecialchars_decode(stripslashes(trim($_GET["text"])),ENT_QUOTES));
When I read the text from the database and put it in the text value I use the code above.
...
input field with type file used for browsing file .How to make it for browsing folder.
...
I want to read from file but, when I use inputAll or inputLine, it read only 70 character from each line.
how can I read from file without limitation ?
...
Looking for a Jquery plugin so I can have a select box that includes a writable option. So using javascript to merge a select box with an input field. I'm thinking this would be a fairly common requirement, Anyone know of such a plugin?
Thanks
...
I have to put my input files directly in the root directory for xcode to see them, and the output files are always in the same root directly.
How can I configure xcode to change the input/output directories ?
...
I have a input type=text inputboxes on a webpage i load and fill with values and click the submitbutton which works fine:
$ie=New-Object -comobject InternetExplorer.Application
$ie.visible=$true
$ie.Navigate("https://myurl/test.html")
while($ie.busy){Start-Sleep 1}
$ie.Document.getElementById("field_firstName").value="Firstname"
$i...
When perform uploading from IE browser, that my backend(org.apache.commons.fileupload) gets full file path.
For other non-IE browsers it gets filename and it's OK because of security.
How to get filename only from input for IE?
Is it possible to do on UI, because I think it's not very graceful to edit apache lib.
Maybe , some paramet...