Git Product home page Git Product logo

jquery-peek's Introduction

jQuery-Peek

I often need to initialize the size or positioning of elements on a page, but there's a problem. These elements are spawned in a hidden tab. When they're hidden like that, their width/height is effectively 0. It's impossible to figure out positioning that way. jQuery-Peek provides a variety of ways to get around that issue.

Demo

You can see an example here.

Usage

Requires jQuery and this plugin.

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="jquery.peek.js"></script>

Now you can use it in a variety of ways:

// Use it to call a quick jQuery function
var width = $(".target:first").peek("width");

// It works with parameters too
var outerWidth = $(".target:first").peek("outerWidth", true);

// Use it like each
$(".target").peek(function() {
  console.log("this target is visible to js right now!");
  console.log($(this).width());
});

// Return a more complex value
$(".target:first").peek(function() {
  return $(this).outerWidth() + $(this).position().left;
});

jquery-peek's People

Contributors

maxpower15 avatar

Stargazers

Steve Beaulac avatar

Watchers

Steve Beaulac avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.