摘要: $(function() {$("div#friend_pic1").hover(function() {$("div#fname_1").delay(2000).slideUp();});$("div#friend_pic1").mouseout(function() {$("div#fname_1").slideDown();});});like: http://jsfiddle.net/XnnvD/1/ 阅读全文
posted @ 2012-03-07 23:44 Lux.Y 阅读(182) 评论(0) 推荐(0)
摘要: I had an array with something like the following: Array ( [0] =>null, [1] => test, [2] => fun ). But I don’t want [0], the empty value in the array.After searching the web for a good solution, I saw that people were using anywhere from 4 to 10+ lines of code to remove null values from array 阅读全文
posted @ 2012-03-07 22:04 Lux.Y 阅读(241) 评论(0) 推荐(0)
摘要: From: http://www.masteringapi.com/tutorials/how-to-post-a-message-on-the-user-wall-using-facebook-graph-api/33/This is a quick post to demonstrate how to post a status message on the user wall using the Facebook Graph API. First of all, you need the publish_stream extended permission to perform this 阅读全文
posted @ 2012-03-07 20:04 Lux.Y 阅读(462) 评论(0) 推荐(0)
摘要: // put this line in the first of the template<?php echo pack("CCC",0xef,0xbb,0xbf); ?> 阅读全文
posted @ 2012-03-07 01:16 Lux.Y 阅读(320) 评论(0) 推荐(0)