Skip to content
View alishahab's full-sized avatar
  • Lahore, Pakistan
Block or Report

Block or report alishahab

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Am I Responsive Website? Am I Responsive Website?
    1
    Am I Responsive Website?
    2
    ------------------------
    3
    Update(22/05/13): The data will be sent as URL vars (method="get") and everyone can share directly submitted URL
    4
    
    
    5
    A [Pen](http://codepen.io/mel/pen/awFgL) by [Mario Vidov](http://codepen.io/mel) on [CodePen](http://codepen.io/).
  2. Responsive Web Development: Return n... Responsive Web Development: Return non-responsive elements
    1
    jQuery('*').filter(function(){if(jQuery(this).width()>jQuery(window).width())return true})
  3. JS Cookies JS Cookies
    1
    function createCookie(name, value, days) {
    2
        var expires;
    3
    
    
    4
        if (days) {
    5
            var date = new Date();
  4. JS immediately executed setTimeout JS immediately executed setTimeout
    1
    // immediately executed function:
    2
    (function doStuff() {
    3
        // Do stuff
    4
        setTimeout(doStuff, 1000);
    5
    }());
  5. JS LoadScript JS LoadScript
    1
    var loadScript = function(url, callback){
    2
    
    
    3
        var script = document.createElement("script")
    4
        script.type = "text/javascript";
    5
    	script.async = true;
  6. This page does not use JS This page does not use JS
    1
    This page does not use JS
    2
    -------------------------
    3
    A reminder that the <style> tag is just another HTML element.
    4
    
    
    5
    A [Pen](http://codepen.io/jcalifa/pen/QwepvY) by [Joel Califa](http://codepen.io/jcalifa) on [CodePen](http://codepen.io/).