javascript - jQuery toggle(); -


I am loading data in a cluetip () dynamically by AJAX.

I want to toggle the result such as a link:

  $ (document) .ready (function () {$ ("# calendarLink") Live ( "Click", (function () {$ ("# result"). Toggle ();}));});  

Will not work over for any reason. Can you give an alternative suggestion?

some questions / points

do you actually .live ( ) You are using an ID selector, so only one of these should be.

In addition, you have an additional set of brackets probably not a problem, but you can remove them:

  $ (document) .ready (function () {$ ("# CalendarLink"). (Function () {$ ("# result"). Toggle ();});});  

Comments

Popular posts from this blog

php - multilevel menu with multilevel array -

.net - C# List<T>.Find(x=>x.Rectangle.Contains(Point)) FAIL -

objective c - iPhone and it's wireless area -