Categories
- agile (3)
- algorithms (17)
- css (29)
- download (3)
- featured (46)
- flex 3 (25)
- javascript (138)
- micro tutorial (202)
- PHP (108)
- portfolio (5)
- snippets (7)
- video (1)
- web development (167)
- zend framework (80)
Category Archives: snippets
jQuery: Get the Selected Option Text
What’s the Task? First of all let me explain what is the task. If there’s a select menu with several options, each of which are with a given value attribute, the task is to get the text into the option … Continue reading
Posted in javascript, micro tutorial, snippets
Tagged Computer programming, Computing, html, jquery, markup, Markup languages, select, snippet, Technical communication
3 Comments
JavaScript Comparision Snippet
== vs. === I know this is really for beginners, but have you ever asked yourself what are the differences between == and === when comparing in JavaScript, and when to use it? Here’s an example: var a = false; … Continue reading
jQuery cssText Helps You Improve Browser Reflows
cssText You know you can manage to redraw an element with single browser reflow. Instead of using .style.property … you can simply add all CSS properties you’d like to change with simply appending to style.cssText property. var csstxt = $(’#selector’).css(’cssText’) … Continue reading
JavaScript Zen
Is undefined equal to undefined? That’s the question! Crockford says it is not, but let see the experiment. var a, b; console.log(typeof a); console.log(a === b); the answer is – it is.







