Hide Show animate with Jquery

From NSB App Studio
Revision as of 22:49, 20 September 2013 by Kaplanerkan (talk | contribs) (Created page with " <pre> Sub Main() Dim sInhalt HTMLview1.innerHTML="" sInhalt = "" sInhalt +="<table width='300px'>" sInhalt +="</tr><td> <p id='eins'>Bestellen</p></td></tr>" ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Sub Main()
  Dim sInhalt
  HTMLview1.innerHTML=""
  sInhalt =  ""
  sInhalt +=""
    sInhalt +=""
  sInhalt +=""
  sInhalt +=""
  sInhalt +="

Bestellen

Hauptmenu

Bestellen

" HTMLview1.innerHTML = sInhalt HTMLview1.refresh() End Sub Function Button5_onclick() '$("#eins").toggle( "slow" ); $("#eins").hide("slow"); $("#zwei").hide("slow" ); $("#Button7").hide("slow" ); $("#Button8").hide("fast" ); End Function Function Button6_onclick() $("#eins").show("slow"); $("#zwei").show("slow"); $("#Button7").show("slow"); $("#Button8").show("slow"); $("#drei").animate({height:"toggle",opacity:"toggle"},"slow"); End Function