jqtransform form events problem
Posted
by Newbie
on Stack Overflow
See other posts from Stack Overflow
or by Newbie
Published on 2010-05-04T11:34:25Z
Indexed on
2010/05/04
11:38 UTC
Read the original article
Hit count: 409
I'm a web designer with css experience, but I'm not a JS developer.
I used jqtransform to style a search form , the problem is it removes all events from selectors and the search button .
here is the code before jqtransform
<input id="go-search" type="button" name="btn_search" value="search" onclick="searchLocations()" />
and after applying the script, the button doesn't do any thing I opened the page source and here how it looks like:
<button class=" jqTransformButton" type="button" name="btn_search" id="go-search"><span><span>search</span></span></button>
Please help me !
© Stack Overflow or respective owner