Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $("<div class='fpItem' id='new_videos'><h2><a href='/video/'>Video's</a></h2><ul class='highlights'></ul></div>").insertBefore($("#pricewatch"));
- $("<div class='fpItem' id='new_reviews'><h2><a href='/reviews/'>Reviews</a></h2><ul class='highlights'></ul></div>").insertBefore($("#pricewatch"));
- $("tr:has(span.video)").each(function() {
- var theLink = $(this).find("td.link a");
- $(theLink).appendTo($("#new_videos ul"));
- $(this).remove();
- });
- $("#new_videos ul a").wrap("<li />");
- $("#new_videos ul li:gt(5)").remove();
- $("tr:has(span.review)").each(function() {
- var theLink = $(this).find("td a.frontPageLink");
- $(theLink).appendTo($("#new_reviews ul"));
- $(this).remove();
- });
- $("#new_reviews ul a").wrap("<li />");
- $("#new_reviews ul li:gt(5)").remove();
Advertisement
Add Comment
Please, Sign In to add comment