Forum: JavaScript / DHTML / AJAX Mar 2nd, 2009 |
| Replies: 5 Views: 667 Here is some expectablel solution not sure...
for example , if you have a quantity field then , if we entered any letters on that it will show an immediate alert "Please Enter Only Numbers (0-9)"... |
Forum: JavaScript / DHTML / AJAX Oct 22nd, 2008 |
| Replies: 2 Views: 548 what is the need to put three forms here... |
Forum: JavaScript / DHTML / AJAX Oct 21st, 2008 |
| Replies: 4 Views: 2,463 can you be more clear about it ??????? |
Forum: JavaScript / DHTML / AJAX Oct 17th, 2008 |
| Replies: 2 Views: 1,548 try this:
var url="check.php"
url=url+"?password="+password
url=url+"?password_check="+password_check |
Forum: JavaScript / DHTML / AJAX Oct 8th, 2008 |
| Replies: 3 Views: 853 hello see this code:
it will print 200 as 200.00
<script language="javascript">
function CurrencyFormatted(amount)
{
var i = parseFloat(amount);
if(isNaN(i)) { i = 0.00; }
... |
Forum: JavaScript / DHTML / AJAX Sep 26th, 2008 |
| Replies: 1 Views: 671 put this <img src="downArrow.gif"> in <a href...></a> and then use onclick function..... |
Forum: JavaScript / DHTML / AJAX Sep 25th, 2008 |
| Replies: 3 Views: 885 check these urls:
http://www.java2s.com/Code/JavaScript/Development/ProgressBar1.htm
http://www.javascriptkit.com/script/script2/progressbar.shtml... |
Forum: JavaScript / DHTML / AJAX Aug 6th, 2008 |
| Replies: 2 Views: 1,450 i dont know exactly...
but hope this may helps you:
http://www.informit.com/articles/article.aspx?p=27800 |
Forum: JavaScript / DHTML / AJAX Aug 5th, 2008 |
| Replies: 11 Views: 8,791 how to disable ctrl+c:
http://www.faqs.org/faqs/msdos-programmer-faq/part2/section-16.html
And
That shortcut is handled by the operating system. It never reaches the browser and so the browser... |
Forum: JavaScript / DHTML / AJAX Aug 5th, 2008 |
| Replies: 11 Views: 8,791 For this I use onKeyDown event. See the following code
that disables CTRL C and CTRL V.
Note that this is not enough to prevent COPY/PASTE
in a text field, since the user can use CTRL INS, SHIFT... |
Forum: JavaScript / DHTML / AJAX Aug 5th, 2008 |
| Replies: 11 Views: 8,791 hello..
read the following:
How to Disable 'View Source'
http://www.felgall.com/htmlt4.htm
http://www.encrypt-html.com/_disable_view_source.htm... |
Forum: JavaScript / DHTML / AJAX Aug 1st, 2008 |
| Replies: 4 Views: 1,495 Fine..
no,any where in your html code...means, any where in your page inside html tags... |
Forum: JavaScript / DHTML / AJAX Jul 31st, 2008 |
| Replies: 4 Views: 1,495 This can achieve by simple java script function:
this is your table having some design:
<table width="291" id="prl" style="display:none">
<tr>
<td width="95">message</td>
... |
Forum: JavaScript / DHTML / AJAX Jul 31st, 2008 |
| Replies: 6 Views: 2,067 Tell me in which purpose ,your are doing this requirement....then we will go to another way... |
Forum: JavaScript / DHTML / AJAX Jul 31st, 2008 |
| Replies: 6 Views: 2,067 heloo try this:
if(true)
{
echo '<script language="javascript">startFunction();
</script>';
} |
Forum: JavaScript / DHTML / AJAX Jul 31st, 2008 |
| Replies: 6 Views: 2,067 <a href="javascript:del('passing variable')" >JS function</a> |
Forum: JavaScript / DHTML / AJAX Jul 16th, 2008 |
| Replies: 10 Views: 3,964 Use this format..
StartDate.setFullYear(StartDateSt);
StartDate.setFullYear(StartDateSt[0],StartDateSt[1],StartDateSt[2]);
The format which i have posted earily is for ... |
Forum: JavaScript / DHTML / AJAX Jul 16th, 2008 |
| Replies: 10 Views: 3,964 Helloo,
By this code convert your date to which format you want:
$dp=$_POST['date'];
$dp1=explode("/",$dp);
$dp2=$dp1[2]."-".$dp1[0]."-".$dp1[1];
In the last line change format according... |
Forum: JavaScript / DHTML / AJAX Jul 15th, 2008 |
| Replies: 10 Views: 3,964 Hello..
i have posted another two ways which i have posted...
try to implement with those also...
then tel me where will be the error... |
Forum: JavaScript / DHTML / AJAX Jul 15th, 2008 |
| Replies: 10 Views: 3,964 always mark thread as solved, when you get solution, as it will help others if they are searching for a solution. |
Forum: JavaScript / DHTML / AJAX Jul 15th, 2008 |
| Replies: 10 Views: 3,964 if (Date.parse(fromDate) > Date.parse(toDate)) {
alert("Invalid Date Range!\nStart Date cannot be after End Date!")
return false;
}
or
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |