Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~788 People Reached
Favorite Tags

3 Posted Topics

Member Avatar for kissmyawesome

Hi, I'm using FPDI and TCPDF to generate on-the-fly PDF documents, using existing PDFs as templates. So far so good. What I really need is the ability to create a 2-column layout, as per the FPDF tutorial here: [URL="http://www.fpdf.org/en/tutorial/tuto4.htm"]http://www.fpdf.org/en/tutorial/tuto4.htm[/URL]. Normally FPDF works fine, but I need to combine this layout …

0
57
Member Avatar for Member #182882

You're on the right track but need to change a few things. Here's the revised code with a comment number next to the changes: [code]window.onload = initMenu; // 1 function initMenu() { var links=document.getElementsByTagName('a'); // 2 for(i=0; i < links.length; i++) { var thisLink = links[i]; if(thisLink.parentNode.tagName == "LI"){ setActivity(thisLink); …

Member Avatar for ~s.o.s~
0
643
Member Avatar for kissmyawesome

I've been scratching my head trying to figure this out. Basically I am trying io impliment the CSS selector ":only-of-type" in XPath 1. The selector should only pick elements that have no other siblings of the same type. Its simple enough if I know the type ahead of time. e.g. …

Member Avatar for fpmurphy
0
88

The End.