Ver Mensaje Individual
  #7 (permalink)  
Antiguo 29/12/2014, 14:12
diurno10
(Desactivado)
 
Fecha de Ingreso: abril-2013
Ubicación: rosario
Mensajes: 248
Antigüedad: 11 años, 6 meses
Puntos: 17
Respuesta: Llamar a una función - ReferenceError: Can't find variable

no lo probaste como yo te lo pase, es decir asi:

Código Javascript:
Ver original
  1. [B]function getAjaxDatat(id){
  2.         jQuery.getJSON('data-temp.php', {id: id}, jQuery(function(chartData) {
  3.             Highcharts.setOptions({
  4.                 lang: {
  5.                 contextButtonTitle: 'Opciones',
  6.                 }
  7.             });
  8.         })
  9.     }   [/B]

y no asi

Código Javascript:
Ver original
  1. jQuery(function getAjaxDatat(id){

Asi, le estas diciendo q llame a un metodo dentro de jquery llamado getAjaxDatat, pero este no existe.
Probalo y me avisas.