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
+ (TLAdView *)adViewForTopLevelTab:(NSDictionary *)topLevelTab | |
frame:(CGRect)frame | |
parentViewController:(UIViewController *)parentViewController | |
{ | |
TLLog( @"BCWebAdView:adViewForTopLevelTab:frame:%@", NSStringFromRect(frame) ); | |
NSString *adViewClassName = @"BCWebAdView"; | |
TLAdView *adView = nil; | |
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
<h3>A Snippet of Current TapLynx Users</h3> | |
<div class="thumb"> | |
<?php | |
$images = glob("images/logos/*.*"); | |
$objDOM = new DOMDocument(); | |
$objDOM->load('includes/logo_names_links.xml'); | |
$logos = $objDOM->getElementsByTagName("logo"); | |
echo '<ul>'; | |
foreach( $logos as $logo ){ | |
echo '<li class="image-block"><a href="' .$logo->getAttribute('url'). '"><img src="images/logos/'.$logo->getAttribute('imagename').'" title="' .$logo->getAttribute('name'). '" class="table-image" /></a></li>'; |
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
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
$('#image-info').hide(); | |
// class="table-image" | |
$('.table-image').mouseover(function(){ // the . references a class | |
var thisisthesrcyouwanted=$(this).attr('src'); | |
$('#image-info').html(thisisthesrcyouwanted); //the # means an id name | |
$('#image-info').show(); | |
}).mouseout(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
- (void)_runSearchWithSearchString:(NSString *)searchString { | |
//10-28-2011 cass: omniture notification: "search called" event10 | |
NSLog(@"search %@",searchString); | |
NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:searchString, @"query", nil]; | |
[[NSNotificationCenter defaultCenter] postNotificationName:BCSearchNotification object:nil userInfo:userInfo]; | |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; | |
if ([self _isWebServiceSearch]) { | |
self.searchString = searchString; |
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
filename = "libTapLynx.a" | |
if [ $filename -e 1] | |
then | |
echo "file found." | |
exit 1 | |
fi |
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
<head> | |
<title>Horizontally Align Divs with CSS</title> | |
<style type="text/css"> | |
html,body{ | |
height: 100%; | |
width: 100%; | |
margin:0; | |
padding:0; | |
} |
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
//Display Images From A Folder with PHP | |
<?php | |
$files = glob("images/*.*"); | |
for ($i=1; $i<count($files); $i++) | |
{ | |
$num = $files[$i]; | |
echo '<img src="'.$num.'" alt="random image">'." "; | |
} | |
?> |
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title>Android v1.1</title> | |
<script type="text/javascript" src="js/jquery-1.6.min.js"></script> | |
<link rel="stylesheet" href="includes/styles.css" type="text/css" media="screen"> | |
<link rel="stylesheet" href="includes/demo_table_jui.css" type="text/css" media="screen"> | |
<script> |
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Rachel's Creations</title> | |
<link href="style.css" rel="stylesheet" type="text/css" /> | |
<style type="text/css"> |