Snap Docs

Snap testing object element




var s = Snap("#svgout"); 

var tux = Snap("#tux");
var tuxContent = tux.node.contentDocument;

var sTux = Snap( tuxContent.firstChild );
var tuxPaths = sTux.selectAll('path');

tuxPaths.forEach( function( el ) { el.attr({ opacity: 0.2 }) });

   
	
SVGout area...
The actual svg markup looks like this (when you've clicked on run)....