You have two issues to deal with. First the easy one:

There was a change in jQuery that deprectaed the use of "@" used in selector filters like this line in your plugin  
jQuery.NiceJForms.radios = $('inp...@type=radio]', el);
taking out the "@" in these instances will help

The (document).ready you provided suggests you have other libraries scripts (Mootools, Prototype etc) on your page. Is this true or did you copy the (document).ready from somewhere? If it is true read this  http://docs.jquery.com/Using_jQuery_with_Other_Libraries

If you don't have other libraries would be better to modify your syntax on document ready to the more recognized format ( like 2nd version you provided), this would be less confusing I believe

Davis wrote:
Hello,

I am wondering where can download the latest version of NiceJforms ? i
found download from http://www.lexcat.ro/nicejforms/

not sure that version work with jquery 1.0 only or? as i fail when
call them using jquery-1.3.2, it stated Object does not support this
property or method ( i guess must be some syntax error )

all of my JQ syntax like following

	jQuery(document).ready(function(){
	(function($){
		$('#x_voice_out').corners({radio:5, outColor:'#00FDFD'});
	})(jQuery);
	});

but NiceJforms are

$(document).ready( function() { $.NiceJForms.build(); } );

so I am wondering do i need to make some change of nicejforms.js code
that co-operate with jquery 1.3.2 version?

i am newbie for jquery..:)

appreciate for any help.
many thanks/Davis.

  

Reply via email to