Welcome everyone
I am working on phonegap application, and my phonegap application contain font loaded using css and using $.get Method to load template and data from localhost but font, data and template was not loaded , and this app work successfully in android,
blackberry and ios.
this problem just occurs in windows 8 and windows phone
this is my font
@font-face
{
font-family:Granada ;
src: url("fonts/AGA-Granada-V2.ttf");
}
here the $.get Method that i used to get data and template
$data = null;
$.get('li.tmpl', function (response) {
elementsTmpl = _.template(response);
$.each(titles, function (index, data) {
alert(data);
addItem(data);
});
any one can help me ?
note this app is working successfully in android, ios and blackberry
mhd