Jump to content

GoldSoft

Members
  • Posts

    10
  • Joined

  • Last visited

GoldSoft's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. HiI need to connect to my sql-server thrught my jQuery-mobile programI try some things - but no success (:Is anyone can send me a little small sample ?Thank
  2. hi is it possible to play sounds on safari using jQuery-mobile ? thanks
  3. HiHow to place div in the center screen ?I dont know the screen resulation it canBe bog or small - but i need the div allways In the center screen.
  4. Client side, the phone will be the client and hold his database
  5. HiIs there any free way for workingWith sqlite and html5 and jQuery ?I work with jQuery-mobileThanks
  6. i have this code for multi check-box <fieldset data-role="collapsible"><legend>Pick one</legend><div data-role="controlgroup" id="ZIBI" align="right" ></div></fieldset>myArray1 = new Array("1","2","3","4","5","6");$("#ZIBI").html('');for (var i = 0; i < myArray1.length; i++) {row = myArray1[i];$("#ZIBI").append('<label for=' + row + '>' + row + '</label>' +'<input type="checkbox" name="favcolor" id=' + row + ' value=' + row + '>');}$('#ZIBI').trigger('create'); how to check all or uncheck all by pressing any button ? thanks
  7. hi i have this code for making 3 buttons <style> .ui-grid-b .ui-input-btn { font-size: 12px; text-align: center; padding: 18px; } </style> <fieldset class="ui-grid-b" style="margin:5px;"> <div class="ui-block-a" > <input type="button" value="OpenALL" onclick="OpenALL();"> </div> <div class="ui-block-b" > <input type="button" value="OpenHash" onclick="OpenHash();"> </div> <div class="ui-block-c" > <input type="button" value="OpenBUG" onclick="OpenBUG();"> </div> </fieldset> i need to add image to the button (under the text) I tried all kinds of ways, but the Result was always ugly and not centered I need the picture to be below the text and everything will be centered. thanks
  8. My first time on this Excellent forum, hope that someone can help me here..... i got from my customer string that I need to get to the server and get an answer. this is the string: http://XXX.YYY.DDD.WWW:8082/My_ws?Myapp=Myprice&Mydip=123&itemno=123456 and i get any string as Result. i try this in ajax and jQuery - But I did not get any answer and I think something wrong in the code: $.ajax({ServiceCallID: 1,url: MyString,type: 'POST',data: '{"itemno": "' + itemno+ '"}',contentType: 'application/json; charset=utf-8',dataType: 'json',success:function (data, textStatus, XMLHttpRequest) {ALL = (data.d).toString();}},error:function (XMLHttpRequest, textStatus, errorThrown) {alert(textStatus);}}); I really have no idea how I'm supposed to send this link and in return get a string from the server thanks
  9. My first time on this Excellent forum, hope that someone can help me here..... i got from my customer string that I need to get to the server and get an answer. this is the string: http://XXX.YYY.DDD.WWW:8082/My_ws?Myapp=Myprice&Mydip=123&itemno=123456 and i get any string as Result. i try this in ajax and jQuery - But I did not get any answer and I think something wrong in the code: $.ajax({ServiceCallID: 1,url: MyString,type: 'POST',data: '{"itemno": "' + itemno+ '"}',contentType: 'application/json; charset=utf-8',dataType: 'json',success:function (data, textStatus, XMLHttpRequest) {ALL = (data.d).toString();}},error:function (XMLHttpRequest, textStatus, errorThrown) {alert(textStatus);}}); I really have no idea how I'm supposed to send this link and in return get a string from the server thanks
  10. My first time on this Excellent forum, hope that someone can help me here..... i got from my customer string that I need to get to the server and get an answer. this is the string: http://XXX.YYY.DDD.WWW:8082/My_ws?Myapp=Myprice&Mydip=123&itemno=123456 and i get any string as Result. i try this in ajax and jQuery - But I did not get any answer and I think something wrong in the code: $.ajax({ServiceCallID: 1,url: MyString,type: 'POST',data: '{"itemno": "' + itemno+ '"}',contentType: 'application/json; charset=utf-8',dataType: 'json',success:function (data, textStatus, XMLHttpRequest) {ALL = (data.d).toString();}},error:function (XMLHttpRequest, textStatus, errorThrown) {alert(textStatus);}}); I really have no idea how I'm supposed to send this link and in return get a string from the server thanks
×
×
  • Create New...