Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for h2so4_2003

Hello, > Quoted Text Here I have put 'jQuery validation' to validate a form and it validates very well n looks perfect in firefox but in chrome when I type anything in some texboxes, error messages gets incremented as much as I type characters in texboxs and my form gets …

0
59
Member Avatar for h2so4_2003

<script type="text/javascript"> function dynaBlock(){ var division=document.getElementById("dynamic_block"); var go_btn=document.getElementById("GO"); if(division.style.display=="none"){ division.style.display="block"; return true; } } </script> function not defined says firebug. onclick="return dynaBlock()" in button. block is in DIV tag. what to do?

Member Avatar for h2so4_2003
0
121
Member Avatar for h2so4_2003

Hello, I would like to call simple 'hello world' in lightbox jQuery. I added the .js and .css files of it in appropriate folder. now how would I call it?

Member Avatar for Airshow
0
74
Member Avatar for h2so4_2003

Hi, I want blank textbox value to be inserted into the database. For that I kept those fields 'default NULL' in mysql. Still doesn't take empty textboxes to be saved blank. What should I do? where am I wrong?

Member Avatar for h2so4_2003
0
112
Member Avatar for h2so4_2003

I would like to pass values in anchoring. Keeping it visible I can use <a href=xyz.php?ID=123&action=delete> In above I would like [B]action=delete[/B] to be hidden. What to do? I cannot use [B]input type=hidden[/B] as I'm not submitting the form.instead requires onclick by clicking on reference page in anchoring and passing …

Member Avatar for ko ko
0
1K
Member Avatar for h2so4_2003

Hi, How do I set loginpage. Should I take loginpage.php page individually besides index.php or should I put loginpage in index.php itself? What to do? What's the proper method to go?

Member Avatar for scarcella
0
73
Member Avatar for h2so4_2003

I used the method for action=edit to pass the value in hidden way to required page. function editRecord(val) { document.getElementById("action")=val; document.actionEdit.submit(); } <table> <tr> <td><a href='abc.php?cno=<?php echo $data[$i]["no"]; ?>' onclick='return editRecord("edit")' > Number </a> </td> </tr> </table> <form name="actionEdit" id="actionEdit" action="./abc.php?page=xyz" method="post"> <input type="hidden" name="action" id="action" /> </form> It doesn't …

Member Avatar for pritaeas
0
94