Tagged Questions
0
votes
3answers
89 views
How can I validate the text-box for restricting user to input for | character
I have placed one text area and I want to put restriction on it ..
Only special characters | should not be allowed to input in text area because I'm using | character in split function.
1
vote
1answer
167 views
Restrict access with htaccess but allow from web pages
How can I restrict access with a .htaccess file Deny from all but all $.post requests, $.get request, etc. How could I still access the file from a page but revoke direct access by just going to it in ...
0
votes
1answer
563 views
Google Places Autocomplete API restrict country stopped working
I am running an google place auto complete item.
I placed a restriction to output only address on a particular country. using the componentRestrictions: {country: 'fr'} code.
This worked very ...
0
votes
1answer
355 views
jquery file does not work outside of domain (crossdomain.xml)
I have read through numerous questions posted here about jquery and cross-domain implementation. What I am about to ask I believe is illegal but...
Background:
I "downloaded" (ripped really) a ...
1
vote
1answer
41 views
Creating a form with a certain amount of numbers in it
Hi there i have this script and im trying to make it work so that only a certain amount of numbers (8 numbers) are allowed in it. What do i have to add to this??
<SCRIPT TYPE="text/javascript">
...
2
votes
1answer
394 views
Limit access to FB application by age
I'm looking for a way to limit access to my html FB application to people above age limit (let say 16 years).
I've found forum topic http://forum.developers.facebook.net/viewtopic.php?pid=123010
but ...
1
vote
1answer
336 views
Detect and apply restriction to objects/ paths using Intersection library
All,
Further to my post here,
@Phrogz suggested we look into Kevin Lindsey's library for our needs of identifying the borders and applying restrictions. Has anyone got any experience of using this ...
0
votes
1answer
2k views
problem in addEventListener for keypress event… for restricting the input charcters only
I have placed one textbox.... I want to put restriction on it ..
that digits and special characters should not be allowed to input in textbox...
how can i do using onkeypress event in Javascript ...
0
votes
2answers
1k views
How can I validate the text-box for restricting the input for characters only in onkeypress event in Javascript
I have placed one textbox.... I want to put restriction on it ..
that digits and special characters should not be allowed to input in textbox...
how can i do using onkeypress event in Javascript ...
0
votes
1answer
262 views
restrict special numbers for input
I want to restrict special numbers for input, so far I have restricted just symbols and text:
<input type="text" id="txtPageNumber" class="txtPageNumber" onkeyup="this.value = ...
3
votes
7answers
524 views
Is there a way to jail in Javascript, so that the DOM isn't visible
I would really like to provide the user some scripting capabilities, while not giving it access to the more powerful features, like altering the DOM. That is, all input/output is tunneled thru a given ...