Posts tagged 'java script'
TypeError: e[h] is not a function
This error occurs when you use jquery and a form input element such as button with id or name as "submit"
Check checkbox checked or not jquery and javascript
We can check checkbox checked status in javascript through its checked property, Like that we can use "is" function in jquery to get checked status
Browser detection in javascript
Sometimes we just need to know client web browser to deliver information or add some code specific to the browser. In a client web browser navigator object holds client browser name,version, user agent,platform and other details.
Easiest way to select all checkbox in javascript / jquery
This simple snippet can be used to select all checkbox. Both jquery and javascript method given, choose whatever suits to you.
PHP Email Validation - SMTP, MX Record and Regular Expression
We sometimes need to validate the integrity of given email id. The easiest way we have is just sending a verification mail to the given email id and asking the user to click on the link in that email. But other than that we have three more ways, that is, SMTP Email Validation, MX Record Check and Regular Expression&
Iterate java script object
A javascript object may contain several properties, at times we need to iterate those properties. for..in loop comes handy in this case.
highcharts hide series name from legend
Highcharts is a rich javascript library which enhances data representations with interactive charts in web applications. But sometimes we need to hide some of default features like series name from legend, find out how can it be done.