Target classic- What is the cleanest way to create a mobile phones segment | Community
Skip to main content
Level 2
October 16, 2015
Solved

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

  • October 16, 2015
  • 6 replies
  • 2801 views

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;
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Nikhil_Bisne

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

6 replies

Nikhil_BisneAccepted solution
Level 8
October 16, 2015

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

October 16, 2015

I`ve the same question

Nicolas_Swisscom
Level 3
October 16, 2015

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

Level 2
October 16, 2015

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

October 16, 2015

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]