<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Try something like in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026927#M40512</link>
    <description>&lt;P&gt;Try something like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$( &lt;SPAN class="string"&gt;"#mybutton"&lt;/SPAN&gt; ).trigger( &lt;SPAN class="string"&gt;"click"&lt;/SPAN&gt; );&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 04 Jun 2015 16:13:00 GMT</pubDate>
    <dc:creator>SithLord</dc:creator>
    <dc:date>2015-06-04T16:13:00Z</dc:date>
    <item>
      <title>trigger button click event</title>
      <link>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026926#M40511</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I need to trigger a button click event from my index_user_scripts.js.&lt;/P&gt;

&lt;P&gt;I'm using App Framework.&lt;/P&gt;

&lt;P&gt;Thanks in advance.&lt;/P&gt;

&lt;P&gt;Marco&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2015 16:02:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026926#M40511</guid>
      <dc:creator>Marco_S_</dc:creator>
      <dc:date>2015-06-04T16:02:43Z</dc:date>
    </item>
    <item>
      <title>Try something like</title>
      <link>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026927#M40512</link>
      <description>&lt;P&gt;Try something like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$( &lt;SPAN class="string"&gt;"#mybutton"&lt;/SPAN&gt; ).trigger( &lt;SPAN class="string"&gt;"click"&lt;/SPAN&gt; );&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2015 16:13:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026927#M40512</guid>
      <dc:creator>SithLord</dc:creator>
      <dc:date>2015-06-04T16:13:00Z</dc:date>
    </item>
    <item>
      <title>If using the design view,</title>
      <link>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026928#M40513</link>
      <description>&lt;P&gt;If using the design view, just open the interactivity pane and you'll see your button listed there. &amp;nbsp;Click on the target on the right and choose "Custom Script...". That'll add an entry for you to that index_user_scripts.js&lt;/P&gt;

&lt;P&gt;But, essentially, it's doing something very similar to what SithLord suggested.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2015 16:53:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026928#M40513</guid>
      <dc:creator>Chris_P_Intel</dc:creator>
      <dc:date>2015-06-04T16:53:51Z</dc:date>
    </item>
    <item>
      <title>Hi all,</title>
      <link>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026929#M40514</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;thanks for replies. I have to get the same effect of pushing a button, not only execute the code event inside the "click".&lt;/P&gt;

&lt;P&gt;For example in c#, vb ecc it´s enough simple by calling the subroutine button_click and the framework also switches the focus on the pushed button.&lt;/P&gt;

&lt;P&gt;I hope this clarifies my question.&lt;/P&gt;

&lt;P&gt;Marco&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2015 13:04:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026929#M40514</guid>
      <dc:creator>Marco_S_</dc:creator>
      <dc:date>2015-06-05T13:04:51Z</dc:date>
    </item>
    <item>
      <title>using jQuery:</title>
      <link>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026930#M40515</link>
      <description>&lt;P&gt;using jQuery:&lt;/P&gt;

&lt;PRE class="brush:;"&gt;$("#mybutton").click()
or
$("#mybutton").trigger("click");
&lt;/PRE&gt;

&lt;P&gt;See the jQuery docs for 'click' and 'trigger'.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2015 15:52:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026930#M40515</guid>
      <dc:creator>Chris_P_Intel</dc:creator>
      <dc:date>2015-06-05T15:52:31Z</dc:date>
    </item>
    <item>
      <title>Did you consult the jQuery</title>
      <link>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026931#M40516</link>
      <description>&lt;P&gt;Did you consult the jQuery docs for those routines? &amp;nbsp;You can also test them in the console.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://api.jquery.com/click/" target="_blank"&gt;https://api.jquery.com/click/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="http://api.jquery.com/trigger/" target="_blank"&gt;http://api.jquery.com/trigger/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;The code I gave you will not run as written. You'll need to change the CSS selector, minimally.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2015 22:08:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026931#M40516</guid>
      <dc:creator>Chris_P_Intel</dc:creator>
      <dc:date>2015-06-05T22:08:52Z</dc:date>
    </item>
    <item>
      <title>Hi all,</title>
      <link>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026932#M40517</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;maybe I found what I need :&lt;/P&gt;

&lt;P&gt;$( '#button1' ).trigger("click");&lt;BR /&gt;
	$( '#button1' ).addClass("pressed");&lt;/P&gt;

&lt;P&gt;The effect is to run the code inside the click button, and set the "focus" on the related button.&lt;BR /&gt;
	&lt;BR /&gt;
	Sorry but I'm newbie at HTML5, CSS, javascript dev and for a "VisualStudio developer" like me is difficult to explain how I want to get.&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 16:10:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trigger-button-click-event/m-p/1026932#M40517</guid>
      <dc:creator>Marco_S_</dc:creator>
      <dc:date>2015-06-08T16:10:41Z</dc:date>
    </item>
  </channel>
</rss>

