Skip to content

Random notes..

  • Sample Page
  • service
Random notes..
  • Coercion in Javascript

    BySajib April 1, 2016January 15, 2017

    Coercion is a very important part of JS structure. Type coercion means that when the operands of an operator are different types, one of them will be converted to an “equivalent” value of the other operand’s type. Coercion has both good and bad side. 

    Read More Coercion in JavascriptContinue

  • JS, Understanding Weird parts-2 (sec 4, Objects & Functions)

    BySajib March 30, 2016January 15, 2017

    In Javascript objects and functions are very much simillar. ‘.’ (dot) operator is used to access the members of any object. person.age  returns the age of the person object. This is left associative operator.

    Read More JS, Understanding Weird parts-2 (sec 4, Objects & Functions)Continue

  • WordPress tags and category

    BySajib March 26, 2016January 15, 2017

    We can get category of tags & Categories in our desired format by using the_category( separator ) and the_tags( beforeList, separator, afterList) function.

    Read More WordPress tags and categoryContinue

  • Ajax-1

    BySajib March 24, 2016January 15, 2017

    AJAX = Asynchronous JavaScript And XML. AJAX allows web pages to be updated asynchronously by exchanging data with a web server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.

    Read More Ajax-1Continue

  • Advanced WordPress Series-1: Filter

    BySajib March 23, 2016January 15, 2017

    Plugin: To create a plugin we should create a directory in the wp folder and create a .php file in that dir. The plugin detail needs to be written inside a comment block to make this visible to wp.

    Read More Advanced WordPress Series-1: FilterContinue

  • JS beginner to expert, study notes-7 (sec-13~14 string&regexp)

    BySajib March 23, 2016January 15, 2017

    Useful String methods: .charAt(0) :  Returns the character at index 0. .toUpperCase() & .toLowerCase() : Returns the case of the char.

    Read More JS beginner to expert, study notes-7 (sec-13~14 string&regexp)Continue

  • JS beginner to expert, study notes-7 (sec-12 form validation)

    BySajib March 22, 2016January 15, 2017

    Checkbox: We can check which checkboxes are checked by user or how many checkboxes are there and what are their values etc without submitting the form.

    Read More JS beginner to expert, study notes-7 (sec-12 form validation)Continue

  • category & tag lists in sidebar [ by shortcode ]

    BySajib March 19, 2016January 15, 2017

    Category: Suppose we have a sidebar list of category which has custom bullet styles.

    Read More category & tag lists in sidebar [ by shortcode ]Continue

  • JS beginner to expert, study notes-6 (sec-11 Events) part-2

    BySajib March 17, 2016January 15, 2017

    Propagation of events: Events are propagated from lower to upper level. A parent div has many child div or other elements. Now, consider both parent div and a child div has individual onclick event listener. If we want that only child div’s event  will be fired then we have to prevent the propagation of event.

    Read More JS beginner to expert, study notes-6 (sec-11 Events) part-2Continue

  • JS beginner to expert, study notes-6 (sec-11 Events) part-1

    BySajib March 16, 2016January 15, 2017

    We need to track events on browser. An event is said to be happened when something like click, mouseover, keypress etc happened. JS can take action based on events. The important events list:

    Read More JS beginner to expert, study notes-6 (sec-11 Events) part-1Continue

Page navigation

Previous PagePrevious 1 2 3 4 Next PageNext

© 2026 Random notes.. - WordPress Theme by Kadence WP

  • Sample Page
  • service