What I'm trying to do seems simple to me, so please do excuse me if it is a stupid question, but is there any way to put a character limit on aa javascript prompt box?
Edit, I failed, I meant prompt box. Silly me.
What I'm trying to do seems simple to me, so please do excuse me if it is a stupid question, but is there any way to put a character limit on aa javascript prompt box?
Edit, I failed, I meant prompt box. Silly me.
You might mean a prompt box, but I'll just make this answer relevant to an alert box.
Try:
alert('Text goes here'.substr(0, limit));