Expand my Community achievements bar.

Applications for the 2024 Adobe Target Community Mentorship Program are open! Click to the right to learn more about participating as either an Aspirant, to professionally level up with a new Certification, or as a Mentor, to share your Adobe Target expertise and inspire through your leadership! Submit your application today.
SOLVED

Target classic- What is the cleanest way to create a mobile phones segment

Avatar

Level 1

I need to create a segment for "mobile phone" traffic (not tablets)

I realize this can be done in Adobe Analytics and shared via the cloud but we have not implemented the Adobe Cloud Visitor ID.  My current solution is to use an expression target using syntax provided by a co-worker with more coding skills than I possess.

Any easier ideas on how to do this in Classic?

Greg

 

 
var userAgent = user.header( 'user-agent' ) || '';
var mobileAgents = [ 'iPhone', 'Windows Phone', 'Android', 'Mobile' ];
 
for( var i = 0; i < mobileAgents.length; i ++ ) {
if( userAgent.indexOf( mobileAgents[ i ] ) > -1 ) {
return true;
}
}
 
return false;
1 Accepted Solution

Avatar

Correct answer by
Level 8

HI Greg,

 

Go through this document(and its subsections). It will help answer your question. Do let us know in case any queries.

 

Thanks

Nikhil

View solution in original post

6 Replies

Avatar

Correct answer by
Level 8

HI Greg,

 

Go through this document(and its subsections). It will help answer your question. Do let us know in case any queries.

 

Thanks

Nikhil

Avatar

Level 1

I have the same question...but the LINK you provided does not work :-(

Avatar

Level 2

You can easily use the targeting widget as well as seen here:  

Avatar

Level 1

Hello , 

I'm trying to create a segment for "Mobile" and a segment for "Tablet". Following some of the examples given. They both record the same data.  Is this maybe because tablet are still considered mobile or vice versa ? 

Screenshot attached of both implementation of segments 

If I did configure it wrong, what is the best way to get "Tablets only"

[img]Screen Shot 2015-07-22 at 3.58.54 pm.png[/img]

[img]Screen Shot 2015-07-22 at 4.02.33 pm.png[/img]