maskedinput not working with codeigniter Programming Web Development by cgull Hello, I have downloaded the plugin maskedinput from: [Click Here](https://github.com/digitalBush/jquery.maskedinput) Trying to use it on a site…;script src="<?php echo $templateAssets; ?>javascripts/jquery.maskedinput.min.js"></script> <script src… Re: maskedinput not working with codeigniter Programming Web Development by gon1387 … first, make sure your browser can access the file 'jquery.maskedinput.min.js' on your part. Also, please indicate the type…="http://digitalbush.com/wp-content/uploads/2013/01/jquery.maskedinput-1.3.1.min_.js" type="text/javascript… Re: maskedinput not working with codeigniter Programming Web Development by gon1387 …;script src="<?php echo $templateAssets; ?>javascripts/jquery.maskedinput.min.js"></script> <script src… Re: maskedinput not working with codeigniter Programming Web Development by cgull Ok, the first alert gives: function the second undefined. When I go to the page source and click on the maskedinput js file, it goes to the file. Firefox cross browser .asp form issue Programming Web Development by caitlins5 …;</script> <script src="/backoffice/includes/jquery.maskedinput-1.2.2.min.js"></script>… html page calls default.aspx.vb and gets Ispostback false Programming Web Development by sharon.chapman7 …;></script> <script src="Scripts/jQuery.maskedinput.js" type="text/javascript"></script… Undefined variable student_id Programming Web Development by davy_yg …"></script> <script src="jquery.maskedinput.min.js" type="text/javascript"><… Edit Invoice Programming Web Development by davy_yg …"></script> <script src="jquery.maskedinput.min.js" type="text/javascript"><… Re: recording date and time Programming Web Development by davy_yg …"></script> <script src="jquery.maskedinput.js" type="text/javascript"></script… Re: recording date and time Programming Web Development by Ketul_1 …"></script> <script src="jquery.maskedinput.min.js" type="text/javascript"><… Re: maskedinput not working with codeigniter Programming Web Development by urtrivedi are u working on ur computer or script is somewhere on live server? You need to check spellings of all js file u include, are they in /javascripts folder or not Re: maskedinput not working with codeigniter Programming Web Development by urtrivedi in first 2 line / before javascript missing Re: maskedinput not working with codeigniter Programming Web Development by cgull I am working on my local computer. The javascript files are included, I checked. The / does not need to be there, it was actually wrong to have it there. I am also calling jquery like this now: <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script> And other jquery scripts on the page work fine… Re: maskedinput not working with codeigniter Programming Web Development by gon1387 Can you alert the type of $ & $.fn.mask before closing the body tag, and see if it outputs "function". ... SOME HTML CODE IN INSIDE THE BODY... <script type="text/javascript"> alert(typeof $); alert(typeof $.fn.mask); </script> </body> </html> … Re: maskedinput not working with codeigniter Programming Web Development by cgull I am working on my local computer. The javascript files are included, I checked. The / does not need to be there, it was actually wrong to have it there. I am also calling jquery like this now: <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script> And other jquery scripts on the page work fine… Re: maskedinput not working with codeigniter Programming Web Development by cgull gon1387 tried your link, getting the same error. My page is calling the javascript files. Re: maskedinput not working with codeigniter Programming Web Development by cgull Ok, got it to work. With all my testings, I added this: `$(function) {` before my mask, now with gon's new file, and removing the function, it works. Thank you all for all the help !!! Re: Firefox cross browser .asp form issue Programming Web Development by hielo try changing: [iCODE] if($("#Rep_Email_Address1").length > 0){[/iCODE] to: [iCODE] if($("#Rep_Email_Address1")[COLOR="Green"][B].val()[/B][/COLOR].length > 0){[/iCODE] if the problem persist, go the addOns page for Firefox and look for Firebug. Install it, restart Firefox and go back to your page. Then specify… Re: Firefox cross browser .asp form issue Programming Web Development by caitlins5 Thank you, but it did not work. I installed firebug and am hoping that will clear things up a bit! Re: Firefox cross browser .asp form issue Programming Web Development by hielo the problem I pointed out originally exists on lines 11 AND 83 of your original post. Re: Firefox cross browser .asp form issue Programming Web Development by caitlins5 I wasn't aware there were 2 spots that needed editing, I edited them both and still not working. Thanks for the speedy responses! Re: Firefox cross browser .asp form issue Programming Web Development by ArtistScope You have a major error between lines 92 - 95. Re: html page calls default.aspx.vb and gets Ispostback false Programming Web Development by G_Waddell Yes this is because you are posting from one page into another page. Therefore, the page has not posted back on to itself. Re: html page calls default.aspx.vb and gets Ispostback false Programming Web Development by nicz17 its to hard.. :( sorry about that Re: Undefined variable student_id Programming Web Development by pritaeas `?student_id=` That's why it's undefined, it doesn't have a value. Re: Undefined variable student_id Programming Web Development by scudzilla Line 164 uses $student_id but $student_id may not have been declared. This occurs when line 138 condition is false. Re: Edit Invoice Programming Web Development by chrisah Start by using custom error messages for your SQLs.. or die("statment 1"); or die("statment 2"); etc. This way you can single out which sql statment is failing. Re: Edit Invoice Programming Web Development by broj1 1. You are using double quoted strings so you can simplify things. Instead of: $sqlstr = "UPDATE `invoice` SET group_date='".$group_date."', group_id='".$_GET['group_id']."', group_package='".$group_package."', group_level='".$group_level."', group_teacher='".$group_teacher."' WHERE … Re: Edit Invoice Programming Web Development by broj1 Also you can write some temporary debug code to print your query on the screen and then copy and paste it into phpmyadmin (or other DB tool) to check it against your data. Put something like this on line 82: die('<pre>' . print_r($sqlstr, 1) . '</pre>'); Re: Edit Invoice Programming Web Development by davy_yg ok, I did what you suggest and I still have the same error.