This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello, | |
My Self Monirul Islam a Web design & Developer and MySQL expert with creative and technical expertise. I have over 4 years of experience in Designing from multinational to start up companies. Personally I believe that quality and perfection requires focus and continued efforts. | |
I am proficient in Web : | |
★PHP | |
★WordPress | |
★HTML5 & CSS3 | |
★Javascript | |
★MySQL Database Query | |
★MySQL Database Management |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.4.js"></script> | |
<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.7/jquery.validate.pack.js"></script> | |
<script> | |
function textCounter( field, spanId, maxlimit ) { | |
if ( field.value.length > maxlimit ) | |
{ | |
field.value = field.value.substring( 0, maxlimit ); | |
alert( 'Textarea value can only be ' + maxlimit + ' characters in length.' ); | |
return false; | |
} |