Search This Blog

Monday, May 27, 2019

Calling JS by ID

$("td[headers=myimgid]").click(function(){     // myimgid is a ID

 (I use it for Image Size)

    ShowLargeImage(this);
});
<title>
<span style="font-family: "courier new" , "courier" , monospace;">$("td[headers=myimgid]").click(function(){    </span> // myimgid is a ID<br />
 (I use it for Image Size)<br />
<span style="font-family: "courier new" , "courier" , monospace;">    ShowLargeImage(this);</span><br />
<span style="font-family: "courier new" , "courier" , monospace;">  </span><br />
<span style="font-family: "courier new" , "courier" , monospace;">});</span>
$("td[headers=myimgid]").click(function(){ // myimgid is a ID (I use it for Image Size) ShowLargeImage(this); }); <title> <span style="font-family: "courier new" , "courier" , monospace;">$("td[headers=myimgid]").click(function(){    </span> // myimgid is a ID<br />  (I use it for Image Size)<br /> <span style="font-family: "courier new" , "courier" , monospace;">    ShowLargeImage(this);</span><br /> <span style="font-family: "courier new" , "courier" , monospace;">  </span><br /> <span style="font-family: "courier new" , "courier" , monospace;">});</span>

No comments:

Post a Comment

Create a Form Using Python for Save Data into Excel like a Database

#Download Pyhton from here https://www.python.org/downloads/  #Download Python: #Click the “Download Python 3.x.x” button (the latest versio...