0

Can you please help me?

In IE10 / FF / Chrome it works like a charm, but in IE8, at this line:

var elementUid = jQuery(this).find("input").attr("value");

I get the error: 'undefined' is null or not an object

Thank you!

Andrew
  • 6,808
  • 3
  • 18
  • 33

2 Answers2

0

The problem was from the event loads, after I replaced

$(document).ready(function ()

with

$(window).load(function ()

the variable was loaded corectly.

Thank you for your sugestions and help!

Andrew
  • 6,808
  • 3
  • 18
  • 33
-1

may be useful.

var elementUid = jQuery(this).find("input").prop("value");
Raju Padhara
  • 687
  • 1
  • 7
  • 20