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
~3K People Reached
Favorite Forums
Favorite Tags
Member Avatar for azhpool

Hi, i'm new to javascript and I'm just wondering why this isnt displaying the alert messages.. can anyone shed some light? <script type="text/javascript" charset="utf-8"> $(document).ready(function() { $("#username").keyup(function(e) { var usr = $("#username").val(); var allready= 0; if(usr.length > 3) { allready= 1; $('input[type="submit"]').removeAttr('disabled'); } else $('input[type="submit"]').attr('disabled', true); allready = 0; }) …

Member Avatar for JorgeM
0
151
Member Avatar for azhpool

Hi, i'm trying to update a mysql table with values, and i get this error: Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE StockID= 23' at line 1. Here is my …

Member Avatar for ddymacek
0
3K