This file contains hidden or 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
| var fio = {}; | |
| fio.deneme = function(xxx){ | |
| alert(xxx); | |
| } | |
| var oldfunction = fio.deneme; | |
| fio.deneme = function(){ |
This file contains hidden or 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 isUrl(s) { | |
| var regexp = /((http|https):\/\/)?[A-Za-z0-9\.-]{3,}\.[A-Za-z]{2}/; | |
| return s.indexOf(' ') < 0 && regexp.test(s); | |
| } | |
| isUrl('http://fatihacet.com.tr') |
This file contains hidden or 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
| var tags = {}; | |
| $("*").each(function(item) { | |
| if (!tags[this.tagName]) { | |
| tags[this.tagName] = 0; | |
| } | |
| tags[this.tagName]++; | |
| }); | |
| console.dir(tags); |
This file contains hidden or 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
| <!DOCTYPE> | |
| <html> | |
| <head> | |
| <title>YSlow Notes</title> | |
| <style type="text/css"> | |
| body { margin: 0; padding: 0; background: #F6F6F6; font-size: 13px; color: #333; font-family: Arial; } | |
| h2 { margin: 0; padding-left: 15px; font-size: 18px; border-bottom: 1px dotted #5F5F5F; color: #872929; } | |
| p { margin: 0; padding: 5px 15px 30px; } | |
| </style> | |
| </head> |
This file contains hidden or 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
| .panelNode-script { background-color: #EFEFE7; color: black; cursor: default; font-family: Monaco,Monospace,Courier New !important; font-size: 12px; } | |
| .sourceRow.hovered { background-color: #EEEEEE; } | |
| .sourceLine { background: none no-repeat scroll 2px 0 #EEEEEE; border-bottom: 1px solid #EEEEEE; border-right: 1px solid #CCCCCC; color: #888888; } | |
| .sourceLine:hover { text-decoration: none; } | |
| .scriptTooltip { background: none repeat scroll 0 0 LightYellow; border: 1px solid #CBE087; color: #000000; } | |
| .sourceRow[exeline="true"] { background-color: lightgoldenrodyellow; outline: 1px solid #D9D9B6; } | |
| .js-comment { color: gray; font-size: 11px; } | |
| .whitespace { color: blue; } | |
| .js-variable { color: #7C3A99; } | |
| .js-punctuation { color: black; } |
This file contains hidden or 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
| $.ajaxQueue = []; | |
| var que = $.ajaxQueue; | |
| $.ajaxSetup({ | |
| beforeSend: function(){ | |
| if (this.queue) { | |
| que.push(this); | |
| } | |
| else { | |
| return true; |
This file contains hidden or 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
| var pubsub = {}; | |
| (function(q) { | |
| var topics = {}, subUid = -1; | |
| q.subscribe = function(topic, func) { | |
| if (!topics[topic]) { | |
| topics[topic] = []; | |
| } | |
| var token = (++subUid).toString(); | |
| topics[topic].push({ | |
| token: token, |
This file contains hidden or 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
| var events = data.events; | |
| var date = {}; | |
| for (var i = 0, ii = events.length; i < ii; i++) { | |
| if (!date[events[i]['date']]) { | |
| date[events[i]['date']] = []; | |
| }; | |
| date[events[i]['date']].push(events[i]); | |
| } | |
| console.log(date); |
This file contains hidden or 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
| // Divide by 10 and round it, then multiply by 10. | |
| var x = 136; | |
| console.log(Math.round(x / 10) * 10); | |
This file contains hidden or 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
| var u = 'www.loremipsum.com'; | |
| var p = /^(http:\/\/)?([^\/]+)/i | |
| u.match(p)[2] | |
| // http://www.loremipsum.com -> www.loremipsum.com | |
| // www.loremipsum.com -> www.loremipsum.com | |
| // www.loremipsum.com/dolor/sit/amet -> www.loremipsum.com |
OlderNewer