Ejemplo n.º 1
0
 public static string attr(this IE_JQuery jQuery, string value)
 {
     if (value.valid())
     {
         value = "'{0}'".format(value);
     }
     jQuery.invokeJQuery("attr", value);
     return(jQuery.getJQueryObject().str());
 }
Ejemplo n.º 2
0
 public static IE_JQuery trigger(this IE_JQuery jQuery, string eventName)
 {
     return(jQuery.invokeJQuery("trigger", "'{0}'".format(eventName)));
 }
Ejemplo n.º 3
0
 public static IE_JQuery click(this IE_JQuery jQuery)
 {
     return(jQuery.invokeJQuery("click", ""));
 }
Ejemplo n.º 4
0
 public static IE_JQuery parent(this IE_JQuery jQuery)
 {
     return(jQuery.invokeJQuery("parent", ""));
 }
Ejemplo n.º 5
0
 public static IE_JQuery element(this IE_JQuery jQuery, string elementName)
 {
     return(jQuery.invokeJQuery("'{0}'".format(elementName)));
 }
Ejemplo n.º 6
0
 public static string attr(this IE_JQuery jQuery)
 {
     jQuery.invokeJQuery("attr", "");
     return(jQuery.getJQueryObject().str());
 }
Ejemplo n.º 7
0
 public static IE_JQuery attr(this IE_JQuery jQuery, string name, string value)
 {
     return(jQuery.invokeJQuery("attr", "'{0}' , '{1}'".format(name, value)));
 }
Ejemplo n.º 8
0
 public static IE_JQuery css(this IE_JQuery jQuery, string cssCode)
 {
     return(jQuery.invokeJQuery("css", cssCode));
 }