Click here to Skip to main content
15,905,233 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: run event of asp contol by javascript Pin
Sunasara Imdadhusen21-May-14 23:37
professionalSunasara Imdadhusen21-May-14 23:37 
QuestionModular Javascript Pin
yaswanth.1614-May-14 7:05
yaswanth.1614-May-14 7:05 
AnswerRe: Modular Javascript Pin
Richard MacCutchan14-May-14 22:02
mveRichard MacCutchan14-May-14 22:02 
QuestionJavascript click event handler Pin
yaswanth.1614-May-14 6:24
yaswanth.1614-May-14 6:24 
AnswerRe: Javascript click event handler Pin
yaswanth.1614-May-14 6:31
yaswanth.1614-May-14 6:31 
AnswerRe: Javascript click event handler Pin
Kornfeld Eliyahu Peter14-May-14 6:57
professionalKornfeld Eliyahu Peter14-May-14 6:57 
GeneralRe: Javascript click event handler Pin
yaswanth.1614-May-14 7:01
yaswanth.1614-May-14 7:01 
Questionhow I can use a variable passed by parameter in a javascript function in a lambda expression? Pin
Francisco Cruz8-May-14 9:09
Francisco Cruz8-May-14 9:09 
QuestionDate formatting - Charts Pin
miss7868-May-14 5:49
miss7868-May-14 5:49 
AnswerRe: Date formatting - Charts Pin
thatraja9-May-14 3:48
professionalthatraja9-May-14 3:48 
GeneralRe: Date formatting - Charts Pin
miss78612-May-14 3:37
miss78612-May-14 3:37 
GeneralRe: Date formatting - Charts Pin
thatraja14-May-14 7:49
professionalthatraja14-May-14 7:49 
GeneralRe: Date formatting - Charts Pin
Sunasara Imdadhusen21-May-14 23:39
professionalSunasara Imdadhusen21-May-14 23:39 
QuestionHow to disable JqueryDateTime Picker Image button Pin
pkarthionline1-May-14 21:51
pkarthionline1-May-14 21:51 
AnswerRe: How to disable JqueryDateTime Picker Image button Pin
Praneet Nadkar4-May-14 22:14
Praneet Nadkar4-May-14 22:14 
AnswerRe: How to disable JqueryDateTime Picker Image button Pin
Dhruvin Bhatt9-May-14 2:29
Dhruvin Bhatt9-May-14 2:29 
QuestionJavascript Pin
amitkumar12788@gmail.com28-Apr-14 23:20
professionalamitkumar12788@gmail.com28-Apr-14 23:20 
AnswerRe: Javascript Pin
thatraja7-May-14 5:21
professionalthatraja7-May-14 5:21 
AnswerRe: Javascript Pin
Anurag Gandhi16-May-14 4:13
professionalAnurag Gandhi16-May-14 4:13 
QuestionShowing blank page on IE Pin
Subin Mavunkal23-Apr-14 22:09
Subin Mavunkal23-Apr-14 22:09 
Hi ,
I have an html page for showing google maps. It is showing fine in chrome and firefox, but not in IE. How to fix this ?

Here is the page I used






<title>Google Maps Multiple Markers






var locations = [
['Bondi Beach', -33.890542, 151.274856, 4],
['Coogee Beach', -33.923036, 151.259052, 5],
['Cronulla Beach', -34.028249, 151.157507, 3],
['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
['Maroubra Beach', -33.950198, 151.259302, 1]
];

var map = new google.maps.Map(document.getElementById('map'), {
zoom: 10,
center: new google.maps.LatLng(-33.92, 151.25),
mapTypeId: google.maps.MapTypeId.ROADMAP
});

var infowindow = new google.maps.InfoWindow();

var marker, i;

for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: map
});

google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
}



AnswerRe: Showing blank page on IE Pin
vbmike24-Apr-14 6:26
vbmike24-Apr-14 6:26 
AnswerRe: Showing blank page on IE Pin
V.25-Apr-14 2:04
professionalV.25-Apr-14 2:04 
QuestionJQPlot legend styling [SOLVED] Pin
V.22-Apr-14 21:33
professionalV.22-Apr-14 21:33 
QuestionHelp with class assignment Pin
GeraldBlackmore22-Apr-14 17:56
GeraldBlackmore22-Apr-14 17:56 
AnswerRe: Help with class assignment Pin
Peter Leow22-Apr-14 18:17
professionalPeter Leow22-Apr-14 18:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.