Phil Barnett
Phil Barnett

Reputation: 73

jquery mobile textarea causes error

I have a jquery mobile page (version 1.3.1) which is exhibiting strange behaviour

I'm trying to use a text area If I put

<textarea></textarea> 

on the page I get the error

Uncaught TypeError: Object [object Object] has no method 'on' jquery.mobile-1.3.1.min.js:4

If I remove

<textarea></textarea> 

the error disappears

I get the same error with

<textarea  cols="40" rows="8" name="message1" id="message1"></textarea>

Upvotes: 1

Views: 180

Answers (1)

Gajotres
Gajotres

Reputation: 57309

This error:

Uncaught TypeError: Object [object Object] has no method 'on'

will be thrown if jQuery version older then 1.7 is used.

Function on was introduced in version 1.7

Upvotes: 3

Related Questions