- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
function enterGiveaway(){
var baseURL = (window.location.href.search(/(\.stg\.)|(local)/i)>-1 ?
'http://www.stg' :
'https://www')
+ '.rosettastone.com/?p_p_id=rosettaajaxsubmit_WAR_rosettaajaxsubmitportlet&p_p_lifecycle=2&data=';
var data = {
email : "test@rs.com",
demo_lang : "",
cis_name : "Golden ticket",
website: 'US_WEBSITE',
form_type : 'entry',
form_url : 'http://www.rosettastone.com/lp/goldenticketentry',
newsletter_type : "Golden_Ticket",
cid: "GoldenTicketEntry"
}
var request = jQuery.ajax({
contentType: "application/json; charset=utf-8",
url: baseURL + encodeURIComponent(JSON.stringify(data)),
type: "POST",
dataType: "jsonp",
data:data
});
return request;
}