How to get an array by hide () of jquery

if only

$(".product_list)[p]

is available, but not with hide ()

$(".product_list)[p].hide()

is how to write this, p is the variable

Mar.28,2021

what you get is a dom object, not a jquery object, and a dom object is a
$($('.product _ list) [p]). Hide ()
or
$(' .product _ list) [p] .style.display = 'none'


$('.product_list').eq(p).hide()
where there is no hide method.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3e3ba-2c3ee.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3e3ba-2c3ee.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?