CSS Loader
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a.substring(0,139).match(/[\s\S]+\s/g)[0].trim() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getPrefix(prop, context) { | |
var vendorPrefixes = ['moz', 'webkit', 'khtml', 'o', 'ms'], | |
upper = prop.charAt(0).toUpperCase() + prop.slice(1), | |
pref, len = vendorPrefixes.length, | |
q = null; | |
while (len--) { | |
q = vendorPrefixes[len]; | |
if (context.toString().indexOf('style')) { | |
q = q.charAt(0).toUpperCase() + q.slice(1); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.isonscreen = function(context){ | |
debugger; | |
var | |
//Subtract the offset of the parent container. | |
//Will be 0 in case cont is undefined | |
tominus=0, | |
//Add the scrollTop position incase no cont is undefined. | |
toadd=0; | |
if(context){ | |
//Find if the div is itself visible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.coverIframes = function(){ | |
$.each($("iframe",this),function(i,v){ | |
var ifr = $(v); | |
var wr = $("<div id='wr"+new Date().getTime()+i+"' style='z-index: 999999; opacity: 0; position:absolute; width:100%;'></div>"); | |
ifr.before(wr); | |
wr.height(ifr.height()); | |
wr.click(function(event){ | |
var iframe = ifr.get(0); | |
var iframeDoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document; | |
// Find click position (coordinates) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onload = function(){ | |
var startPosX=0,startPosY=0; | |
var elements = $("tapHighlightJS"); | |
for(var i=0;i<elements.length;i++){ | |
var el = $(elements[i]); | |
el.bind('touchstart', function(ev){ | |
var touchobj = ev.originalEvent.changedTouches[0]; | |
startPosX = touchobj.pageX; | |
startPosY = touchobj.pageY; | |
}).bind('touchend', function(ev){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Usage is pretty simple.Just pass an object containing all the attributes you want to set as important. | |
e.g $("#i1").setFixedStyle({"width":"50px","height":""}); | |
There are two additional options. | |
1.To just add important parameter to already present style attribute pass empty string. | |
2.To add important param for all attributes present dont pass anything. It will set all attributes as important. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("iframe").contents().find("a").attr("target","_blank"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.isOnScreen = function(){ | |
var win = $(window); | |
var viewport = { | |
top : win.scrollTop(), | |
left : win.scrollLeft() | |
}; | |
viewport.right = viewport.left + win.width(); | |
viewport.bottom = viewport.top + win.height(); | |
var bounds = this.offset(); |
NewerOlder