Posts by Emanuelle • 1 point
4 posts
-
0
votes0
answers144
viewsQ: Google Maps API filter 'title'
Good night, I create the markers on the map using the method: function addMarkersLabel() { var latlngbounds = new google.maps.LatLngBounds(); for (var i in points) { var marker = new…
-
0
votes0
answers38
viewsQ: jqxGrid display special character &
I have an intermittent error, or jqxGrid is displayed the & now he displays '&. Even the dataAdapter, being configured as: contentType: 'application/json; charset=utf-8'. How can I solve…
-
0
votes1
answer77
viewsA: jQuery.ajax calls webmethod(c#) with Speechsynthesizer
I managed to resolve it this way: $. ajax({url: "your Webmethod", Success: Function(result){ if('speechSynthesis' in window){ var Speech = new Speechsynthesisutterance(result); Speech.lang =…
-
0
votes1
answer77
viewsQ: jQuery.ajax calls webmethod(c#) with Speechsynthesizer
I have a javascript method that checks if there is an unread message. If there displays the image of an envelope. The method executes a jQuery.ajax calling a Webmethod that returns the amount of…