jQuery library 1.4.4 not allowing spaces in textbox

MayoliWakly

New Member
I'm using asp text boxes and some javascript code in my project.After seeing that spaces in my text boxes are disabled, I went through similar problems others have been faced with and got that mostly javascript makes this kind of issues. So after trying I got that jQuery library 1.4.4 is the cause. But by removing that, my slideshow would be disabled.Any idea what could be the better or a proper solution for this?Here is the sample.The result of what I've tried shows me that the scripts below in file " jq1.js " is making the issue. \[code\]$(function () { $('#MainGalleryData .test').lightBox(); $('#MainGalleryData2 .test').lightBox(); $('#MainGalleryData3 .test').lightBox(); $('#MainGalleryData4 .test').lightBox(); $('#MainGalleryData5 .test').lightBox(); $('#MainGalleryData6 .test').lightBox(); $('#MainGalleryData7 .test').lightBox(); $('#MainGalleryData8 .test').lightBox(); $('#MainGalleryData9 .test').lightBox(); $('#MainGalleryData10 .test').lightBox(); $('#MainGalleryData11 .test').lightBox(); $('#MainGalleryData12 .test').lightBox();\[/code\]});\[code\]jQuery(document).ready(function () { jQuery('#MainSlidesUl').fadeSlideShow();});\[/code\]
 
Back
Top